public enum Loggers extends java.lang.Enum<Loggers>
| Enum Constant and Description |
|---|
ACI_LOG
The dedicated logger for ACIs
|
CODEC_LOG
The dedicated logger for CODEC
|
CONSUMER_LOG
The dedicated logs for the replication consumer
|
CURSOR_LOG
The dedicated logs for the cursors
|
KERBEROS_LOG
The dedicated logger for KERBEROS
|
OPERATION_LOG
The dedicated logger for LDAP operations
|
OPERATION_STAT
The dedicated logs for operation statistics
|
OPERATION_TIME
The dedicated logs for operation execution time
|
PROVIDER_LOG
The dedicated logs for the replication provider
|
| Modifier and Type | Field and Description |
|---|---|
private java.lang.String |
name
The associated name
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName() |
static Loggers |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Loggers[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Loggers ACI_LOG
public static final Loggers CONSUMER_LOG
public static final Loggers CURSOR_LOG
public static final Loggers PROVIDER_LOG
public static final Loggers OPERATION_STAT
public static final Loggers OPERATION_TIME
public static final Loggers KERBEROS_LOG
public static final Loggers OPERATION_LOG
public static final Loggers CODEC_LOG
public static Loggers[] values()
for (Loggers c : Loggers.values()) System.out.println(c);
public static Loggers 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 nullpublic java.lang.String getName()