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