JTools

org.jtools.dao.invocation
Enum ParamOrder

java.lang.Object
  extended by java.lang.Enum<ParamOrder>
      extended by org.jtools.dao.invocation.ParamOrder
All Implemented Interfaces:
Serializable, Comparable<ParamOrder>

public enum ParamOrder
extends Enum<ParamOrder>


Enum Constant Summary
EMPTY
           
NAME
           
PARENT_NAME
           
VALUE
           
VALUE_NAME
           
VALUE_PARENT_NAME
           
 
Method Summary
abstract
<T_Return,T_Data>
T_Return
accept(ParamOrderVisitor<T_Return,T_Data> visitor, T_Data... data)
           
 int getNumValues()
           
static ParamOrder valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ParamOrder[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

VALUE_PARENT_NAME

public static final ParamOrder VALUE_PARENT_NAME

PARENT_NAME

public static final ParamOrder PARENT_NAME

VALUE_NAME

public static final ParamOrder VALUE_NAME

VALUE

public static final ParamOrder VALUE

NAME

public static final ParamOrder NAME

EMPTY

public static final ParamOrder EMPTY
Method Detail

values

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

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

valueOf

public static ParamOrder 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

getNumValues

public int getNumValues()

accept

public abstract <T_Return,T_Data> T_Return accept(ParamOrderVisitor<T_Return,T_Data> visitor,
                                                  T_Data... data)

JTools

© 2000-2006, JTools.org.