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