public static enum PlatformUtils.OperatingSystem extends Enum<PlatformUtils.OperatingSystem>
| Enum Constant and Description |
|---|
MACOSX |
SOLARIS |
UNIX |
UNKNOWN |
WINDOWS |
| Modifier and Type | Method and Description |
|---|---|
static PlatformUtils.OperatingSystem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlatformUtils.OperatingSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlatformUtils.OperatingSystem WINDOWS
public static final PlatformUtils.OperatingSystem UNIX
public static final PlatformUtils.OperatingSystem MACOSX
public static final PlatformUtils.OperatingSystem SOLARIS
public static final PlatformUtils.OperatingSystem UNKNOWN
public static PlatformUtils.OperatingSystem[] values()
for (PlatformUtils.OperatingSystem c : PlatformUtils.OperatingSystem.values()) System.out.println(c);
public static PlatformUtils.OperatingSystem valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 JBoss by Red Hat. All rights reserved.