Enum Constant and Description |
---|
ANDROID |
IOS |
MAC |
UNIX |
UNKNOWN |
WINDOWS |
Modifier and Type | Method and Description |
---|---|
static Os |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Os[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Os WINDOWS
public static final Os MAC
public static final Os UNIX
public static final Os ANDROID
public static final Os IOS
public static final Os UNKNOWN
public static Os[] values()
for (Os c : Os.values()) System.out.println(c);
public static Os 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