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