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