public static enum Platform.OsType extends java.lang.Enum<Platform.OsType>
Enum Constant and Description |
---|
LINUX32 |
LINUX64 |
MAC32 |
MAC64 |
OTHER |
WIN32 |
WIN64 |
Modifier and Type | Method and Description |
---|---|
static Platform.OsType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Platform.OsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Platform.OsType LINUX64
public static final Platform.OsType LINUX32
public static final Platform.OsType MAC64
public static final Platform.OsType MAC32
public static final Platform.OsType WIN64
public static final Platform.OsType WIN32
public static final Platform.OsType OTHER
public static Platform.OsType[] values()
for (Platform.OsType c : Platform.OsType.values()) System.out.println(c);
public static Platform.OsType 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