public enum OSGroup extends Enum<OSGroup>
| Modifier and Type | Method and Description |
|---|---|
static OSGroup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OSGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OSGroup Windows
public static final OSGroup Linux
public static final OSGroup MAC
public static final OSGroup UNKNOWN
public static OSGroup[] values()
for (OSGroup c : OSGroup.values()) System.out.println(c);
public static OSGroup 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 © 2019 SMYLD. All rights reserved.