|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<OperationType>
com.unboundid.ldap.sdk.OperationType
@ThreadSafety(level=COMPLETELY_THREADSAFE) public enum OperationType
This enum defines the set of LDAP operation types.
Enum Constant Summary | |
---|---|
ABANDON
The operation type that will be used for abandon operations. |
|
ADD
The operation type that will be used for add operations. |
|
BIND
The operation type that will be used for bind operations. |
|
COMPARE
The operation type that will be used for compare operations. |
|
DELETE
The operation type that will be used for delete operations. |
|
EXTENDED
The operation type that will be used for extended operations. |
|
MODIFY
The operation type that will be used for modify operations. |
|
MODIFY_DN
The operation type that will be used for modify DN operations. |
|
SEARCH
The operation type that will be used for search operations. |
|
UNBIND
The operation type that will be used for unbind operations. |
Method Summary | |
---|---|
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 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 |
---|
public static final OperationType ABANDON
public static final OperationType ADD
public static final OperationType BIND
public static final OperationType COMPARE
public static final OperationType DELETE
public static final OperationType EXTENDED
public static final OperationType MODIFY
public static final OperationType MODIFY_DN
public static final OperationType SEARCH
public static final OperationType UNBIND
Method Detail |
---|
public static 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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |