public static enum Platform.OperatingSystem extends java.lang.Enum<Platform.OperatingSystem>
OperatingSystems.
For unknown operating systems, getName() will return
the the same value as System.getProperty("os.name").
| Enum Constant and Description |
|---|
Linux |
MacOS |
Solaris |
Unknown |
Windows |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName() |
java.lang.String |
id() |
java.lang.String |
toString() |
static Platform.OperatingSystem |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Platform.OperatingSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Platform.OperatingSystem Windows
public static final Platform.OperatingSystem Linux
public static final Platform.OperatingSystem Solaris
public static final Platform.OperatingSystem MacOS
public static final Platform.OperatingSystem Unknown
public static Platform.OperatingSystem[] values()
for (Platform.OperatingSystem c : Platform.OperatingSystem.values()) System.out.println(c);
public static Platform.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 java.lang.String getName()
public java.lang.String id()
public java.lang.String toString()
toString in class java.lang.Enum<Platform.OperatingSystem>Copyright © 2020. All Rights Reserved.