public static enum OptionMaster.OptionPlatform extends Enum<OptionMaster.OptionPlatform>
Option
s can be either platform-specific or applicable to all
platforms. Options that are platform-specific still appear in the
UI, but their component is not enabled.Modifier and Type | Method and Description |
---|---|
static OptionMaster.OptionPlatform |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OptionMaster.OptionPlatform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptionMaster.OptionPlatform ALL
public static final OptionMaster.OptionPlatform UNIXLIKE
public static final OptionMaster.OptionPlatform WINDOWS
public static OptionMaster.OptionPlatform[] values()
for (OptionMaster.OptionPlatform c : OptionMaster.OptionPlatform.values()) System.out.println(c);
public static OptionMaster.OptionPlatform 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