|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<OperationType>
org.apache.directory.mitosis.operation.OperationType
public enum OperationType
An enum used to determinate the operation type when deserializing
Enum Constant Summary | |
---|---|
ADD_ATTRIBUTE
The Add Attribute operation |
|
ADD_ENTRY
The Add Entry operation |
|
COMPOSITE_OPERATION
The composite operation |
|
DELETE_ATTRIBUTE
The Delete Attribute operation |
|
REPLACE_ATTRIBUTE
The Replace Attribute operation |
Method Summary | |
---|---|
static OperationType |
get(int value)
Get the associated OperationType from an integer value |
int |
getValue()
|
static OperationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static OperationType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final OperationType ADD_ENTRY
public static final OperationType ADD_ATTRIBUTE
public static final OperationType DELETE_ATTRIBUTE
public static final OperationType REPLACE_ATTRIBUTE
public static final OperationType COMPOSITE_OPERATION
Method Detail |
---|
public static final OperationType[] values()
for(OperationType c : OperationType.values()) System.out.println(c);
public static OperationType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namepublic int getValue()
public static OperationType get(int value)
value
- The integer value of an operation type
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |