var.experimenter
Enum RangeOption.TYPE

java.lang.Object
  extended by java.lang.Enum<RangeOption.TYPE>
      extended by var.experimenter.RangeOption.TYPE
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RangeOption.TYPE>
Enclosing class:
RangeOption

public static enum RangeOption.TYPE
extends java.lang.Enum<RangeOption.TYPE>


Enum Constant Summary
DUAL_INTEGER
           
DUAL_SELECT
           
NO_ARGS
           
SINGLE_DOUBLE
           
SINGLE_INTEGER
           
SINGLE_SELECT
           
SINGLE_STRING
           
 
Method Summary
static RangeOption.TYPE valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RangeOption.TYPE[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NO_ARGS

public static final RangeOption.TYPE NO_ARGS

SINGLE_STRING

public static final RangeOption.TYPE SINGLE_STRING

SINGLE_DOUBLE

public static final RangeOption.TYPE SINGLE_DOUBLE

SINGLE_INTEGER

public static final RangeOption.TYPE SINGLE_INTEGER

DUAL_INTEGER

public static final RangeOption.TYPE DUAL_INTEGER

SINGLE_SELECT

public static final RangeOption.TYPE SINGLE_SELECT

DUAL_SELECT

public static final RangeOption.TYPE DUAL_SELECT
Method Detail

values

public static RangeOption.TYPE[] 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 (RangeOption.TYPE c : RangeOption.TYPE.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RangeOption.TYPE valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null