com.ca.jcs.processor
Enum OpProcessor.MethodName

java.lang.Object
  extended by java.lang.Enum<OpProcessor.MethodName>
      extended by 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.


Enum Constant Summary
doAdd
           
doDelete
           
doLookUp
           
doModify
           
doModifyRn
           
doMove
           
doSearch
           
 
Method Summary
static OpProcessor.MethodName valueOf(String name)
          Returns the enum constant of this type with the specified name.
static OpProcessor.MethodName[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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