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