@ThreadSafety(level=COMPLETELY_THREADSAFE) public enum OperationType extends java.lang.Enum<OperationType>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
static OperationType |
forName(java.lang.String name)
Retrieves the operation type with the specified name.
|
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.
|
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
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 namejava.lang.NullPointerException
- if the argument is null@Nullable public static OperationType forName(@NotNull java.lang.String name)
name
- The name of the operation type to retrieve. It must not be
null
.null
if no such operation
type is defined.