|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AccessLogOperationType>
com.unboundid.ldap.sdk.unboundidds.logs.AccessLogOperationType
@ThreadSafety(level=COMPLETELY_THREADSAFE) public enum AccessLogOperationType
NOTE: This class is part of the Commercial Edition of the UnboundID LDAP SDK for Java. It is not available for use in applications that include only the Standard Edition of the LDAP SDK, and is not supported for use in conjunction with non-UnboundID products.This enum defines the set of access log operation types.
Enum Constant Summary | |
---|---|
ABANDON
The operation type that will be used for messages about abandon operations. |
|
ADD
The operation type that will be used for messages about add operations. |
|
BIND
The operation type that will be used for messages about bind operations. |
|
COMPARE
The operation type that will be used for messages about compare operations. |
|
DELETE
The operation type that will be used for messages about delete operations. |
|
EXTENDED
The operation type that will be used for messages about extended operations. |
|
MODDN
The operation type that will be used for messages about modify DN operations. |
|
MODIFY
The operation type that will be used for messages about modify operations. |
|
SEARCH
The operation type that will be used for messages about search operations. |
|
UNBIND
The operation type that will be used for messages about unbind operations. |
Method Summary | |
---|---|
static AccessLogOperationType |
forName(java.lang.String logIdentifier)
Retrieves the access log operation type with the provided identifier. |
java.lang.String |
getLogIdentifier()
Retrieves the string that will be used to identify this operation type in log files. |
static AccessLogOperationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static AccessLogOperationType[] |
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 AccessLogOperationType ABANDON
public static final AccessLogOperationType ADD
public static final AccessLogOperationType BIND
public static final AccessLogOperationType COMPARE
public static final AccessLogOperationType DELETE
public static final AccessLogOperationType EXTENDED
public static final AccessLogOperationType MODIFY
public static final AccessLogOperationType MODDN
public static final AccessLogOperationType SEARCH
public static final AccessLogOperationType UNBIND
Method Detail |
---|
public static AccessLogOperationType[] values()
for (AccessLogOperationType c : AccessLogOperationType.values()) System.out.println(c);
public static AccessLogOperationType 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 getLogIdentifier()
public static AccessLogOperationType forName(java.lang.String logIdentifier)
logIdentifier
- The identifier string for which to retrieve the
corresponding access log operation type.
null
if there is no
operation type associated with the provided identifier.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |