com.ibm.di.fc.idml
Enum IdMLConstants.Operations

java.lang.Object
  extended by java.lang.Enum<IdMLConstants.Operations>
      extended by com.ibm.di.fc.idml.IdMLConstants.Operations
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IdMLConstants.Operations>
Enclosing class:
IdMLConstants

public static enum IdMLConstants.Operations
extends java.lang.Enum<IdMLConstants.Operations>

This enumeration contains the operations supported by the IDML schema.


Enum Constant Summary
CREATE
          Create operation.
DELETE
          Delete operation.
MODIFY
          Modify operation.
 
Field Summary
static java.lang.String PARAM_NAME
          This attribute is used to specify the operation of the created CI/Relationships.
 
Method Summary
static IdMLConstants.Operations valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IdMLConstants.Operations[] 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

CREATE

public static final IdMLConstants.Operations CREATE
Create operation.


MODIFY

public static final IdMLConstants.Operations MODIFY
Modify operation.


DELETE

public static final IdMLConstants.Operations DELETE
Delete operation.

Field Detail

PARAM_NAME

public static final java.lang.String PARAM_NAME
This attribute is used to specify the operation of the created CI/Relationships. It accepts the above values.

See Also:
Constant Field Values
Method Detail

values

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

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

valueOf

public static IdMLConstants.Operations valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null