org.apache.beehive.netui.tags.html
Enum Select.RepeatingStages

Object
  extended by Enum<Select.RepeatingStages>
      extended by Select.RepeatingStages
All Implemented Interfaces:
Serializable, Comparable<Select.RepeatingStages>
Enclosing class:
Select

public static enum Select.RepeatingStages
extends Enum<Select.RepeatingStages>

This enum defines stages through the possible option values.


Enum Constant Summary
BEFORE
           
DATASOURCE
           
DEFAULT
           
DONE
           
NULL
           
OPTION
           
 
Field Summary
static String REPEATING_DATASOURCE
           
static String REPEATING_DEFAULT
           
static String REPEATING_NULL
           
static String REPEATING_OPTION
          These are the publically exposed stages, REPEATING_OPTION, REPEATING_DEFAULT, REPEATING_DATASOURCE and REPEATING_NULL.
 int value
           
 
Method Summary
static Select.RepeatingStages parseString(String value)
          Given a String value defined above, return the enum value for it.
 String toString()
          Returns the String value that can be used to order the selection.
static Select.RepeatingStages valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Select.RepeatingStages[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BEFORE

public static final Select.RepeatingStages BEFORE

OPTION

public static final Select.RepeatingStages OPTION

DEFAULT

public static final Select.RepeatingStages DEFAULT

DATASOURCE

public static final Select.RepeatingStages DATASOURCE

NULL

public static final Select.RepeatingStages NULL

DONE

public static final Select.RepeatingStages DONE
Field Detail

REPEATING_OPTION

public static final String REPEATING_OPTION
These are the publically exposed stages, REPEATING_OPTION, REPEATING_DEFAULT, REPEATING_DATASOURCE and REPEATING_NULL.

See Also:
Constant Field Values

REPEATING_DEFAULT

public static final String REPEATING_DEFAULT
See Also:
Constant Field Values

REPEATING_DATASOURCE

public static final String REPEATING_DATASOURCE
See Also:
Constant Field Values

REPEATING_NULL

public static final String REPEATING_NULL
See Also:
Constant Field Values

value

public int value
Method Detail

values

public static final Select.RepeatingStages[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(Select.RepeatingStages c : Select.RepeatingStages.values())
        System.out.println(c);

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

valueOf

public static Select.RepeatingStages 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

toString

public String toString()
Returns the String value that can be used to order the selection.

Overrides:
toString in class Enum<Select.RepeatingStages>
Returns:
The String Value.

parseString

public static Select.RepeatingStages parseString(String value)
Given a String value defined above, return the enum value for it.

Parameters:
value - a String value matching one of the public Strings defined for the class.
Returns:
the matching RepeatingStages or null.