edu.wisc.ssec.mcidasv.startupmanager.options
Enum OptionMaster.OptionPlatform
java.lang.Object
java.lang.Enum<OptionMaster.OptionPlatform>
edu.wisc.ssec.mcidasv.startupmanager.options.OptionMaster.OptionPlatform
- All Implemented Interfaces:
- Serializable, Comparable<OptionMaster.OptionPlatform>
- Enclosing class:
- OptionMaster
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.
ALL
public static final OptionMaster.OptionPlatform ALL
UNIXLIKE
public static final OptionMaster.OptionPlatform UNIXLIKE
WINDOWS
public static final OptionMaster.OptionPlatform WINDOWS
values
public static OptionMaster.OptionPlatform[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (OptionMaster.OptionPlatform c : OptionMaster.OptionPlatform.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static OptionMaster.OptionPlatform valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null