org.jtools.dao.invocation
Enum ParamOrder
java.lang.Object
java.lang.Enum<ParamOrder>
org.jtools.dao.invocation.ParamOrder
- All Implemented Interfaces:
- Serializable, Comparable<ParamOrder>
public enum ParamOrder
- extends Enum<ParamOrder>
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
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)
© 2000-2006, JTools.org.