edu.wisc.ssec.mcidasv.startupmanager.options
Enum OptionMaster.OptionPlatform

java.lang.Object
  extended by java.lang.Enum<OptionMaster.OptionPlatform>
      extended by 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>

Options 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.


Enum Constant Summary
ALL
           
UNIXLIKE
           
WINDOWS
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ALL

public static final OptionMaster.OptionPlatform ALL

UNIXLIKE

public static final OptionMaster.OptionPlatform UNIXLIKE

WINDOWS

public static final OptionMaster.OptionPlatform WINDOWS
Method Detail

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