public static enum Platform.OperatingSystem extends java.lang.Enum<Platform.OperatingSystem>
| Modifier and Type | Method and Description |
|---|---|
static Platform.OperatingSystem |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Platform.OperatingSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Platform.OperatingSystem MAC
public static final Platform.OperatingSystem LINUX
public static final Platform.OperatingSystem WINDOWS
public static final Platform.OperatingSystem UNKNOWN
public static Platform.OperatingSystem[] values()
for (Platform.OperatingSystem c : Platform.OperatingSystem.values()) System.out.println(c);
public static Platform.OperatingSystem valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null