Package com.ibm.di.fc.idml
Enum IdMLConstants.Operations
- java.lang.Object
-
- java.lang.Enum<IdMLConstants.Operations>
-
- 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.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
PARAM_NAME
This attribute is used to specify the operation of the created CI/Relationships.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description 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.
-
-
-
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 namejava.lang.NullPointerException
- if the argument is null
-
-