|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ChangeOperationType>
org.opends.server.util.ChangeOperationType
@PublicAPI(stability=UNCOMMITTED, mayInstantiate=false, mayExtend=false, mayInvoke=true) public enum ChangeOperationType
This enumeration defines the days of the week.
Enum Constant Summary | |
---|---|
ADD
The change type for add operations. |
|
DELETE
The change type for delete operations. |
|
MODIFY
The change type for modify operations. |
|
MODIFY_DN
The change type for modify DN operations. |
Method Summary | |
---|---|
java.lang.String |
getLDIFChangeType()
Retrieves the name of the change type as it should appear in LDIF "changetype" records. |
java.lang.String |
getType()
Retrieves the human-readable name this change type. |
java.lang.String |
toString()
Retrieves a string representation of this type. |
static ChangeOperationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ChangeOperationType[] |
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, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ChangeOperationType ADD
public static final ChangeOperationType DELETE
public static final ChangeOperationType MODIFY
public static final ChangeOperationType MODIFY_DN
Method Detail |
---|
public static ChangeOperationType[] values()
for (ChangeOperationType c : ChangeOperationType.values()) System.out.println(c);
public static ChangeOperationType 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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String getType()
public java.lang.String getLDIFChangeType()
public java.lang.String toString()
toString
in class java.lang.Enum<ChangeOperationType>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |