public enum OperatingSystemType extends Enum<OperatingSystemType>
| Enum Constant and Description |
|---|
AIX |
BSD |
HPUX |
JAVA |
LINUX |
OSX |
SOLARIS |
WINDOWS |
| Modifier and Type | Method and Description |
|---|---|
static OperatingSystemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperatingSystemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperatingSystemType JAVA
public static final OperatingSystemType WINDOWS
public static final OperatingSystemType LINUX
public static final OperatingSystemType SOLARIS
public static final OperatingSystemType BSD
public static final OperatingSystemType AIX
public static final OperatingSystemType HPUX
public static final OperatingSystemType OSX
public static OperatingSystemType[] values()
for (OperatingSystemType c : OperatingSystemType.values()) System.out.println(c);
public static OperatingSystemType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2008-2014 Red Hat, Inc.. All Rights Reserved.