public static enum Os.PlatformType extends java.lang.Enum<Os.PlatformType>
| Modifier and Type | Method and Description |
|---|---|
static Os.PlatformType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Os.PlatformType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Os.PlatformType windows
public static final Os.PlatformType mac
public static final Os.PlatformType unix
public static final Os.PlatformType android
public static final Os.PlatformType unknown
public static Os.PlatformType[] values()
for (Os.PlatformType c : Os.PlatformType.values()) System.out.println(c);
public static Os.PlatformType 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