com.ca.jcs.processor
Enum OpProcessor.MethodName
java.lang.Object
java.lang.Enum<OpProcessor.MethodName>
com.ca.jcs.processor.OpProcessor.MethodName
- All Implemented Interfaces:
- Serializable, Comparable<OpProcessor.MethodName>
- Enclosing interface:
- OpProcessor
public static enum OpProcessor.MethodName
- extends Enum<OpProcessor.MethodName>
An enumeration matching methods which can be targeted by OpBindings in this class.
doAdd
public static final OpProcessor.MethodName doAdd
doDelete
public static final OpProcessor.MethodName doDelete
doModify
public static final OpProcessor.MethodName doModify
doModifyRn
public static final OpProcessor.MethodName doModifyRn
doMove
public static final OpProcessor.MethodName doMove
doLookUp
public static final OpProcessor.MethodName doLookUp
doSearch
public static final OpProcessor.MethodName doSearch
values
public static OpProcessor.MethodName[] 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 (OpProcessor.MethodName c : OpProcessor.MethodName.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static OpProcessor.MethodName 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
Created 2011-07-14 13:27 EST