public enum OperatingSystem extends java.lang.Enum<OperatingSystem>
| Modifier and Type | Method and Description |
|---|---|
boolean |
isMac() |
boolean |
isUnknown() |
boolean |
isWindows() |
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 Windows
public static final OperatingSystem Mac
public static final OperatingSystem Unknown
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 boolean isWindows()
public boolean isMac()
public boolean isUnknown()