public enum LogDomain extends Enum<LogDomain>
Enum Constant and Description |
---|
ALL
Deprecated.
Use the EnumSet
LogDomain.ALL_DOMAINS |
DATABASE |
LISTENER |
NETWORK |
QUERY |
REPLICATOR |
Modifier and Type | Field and Description |
---|---|
static EnumSet<LogDomain> |
ALL_DOMAINS |
Modifier and Type | Method and Description |
---|---|
static LogDomain |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogDomain[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final LogDomain ALL
LogDomain.ALL_DOMAINS
public static final LogDomain DATABASE
public static final LogDomain QUERY
public static final LogDomain REPLICATOR
public static final LogDomain NETWORK
public static final LogDomain LISTENER
public static LogDomain[] values()
for (LogDomain c : LogDomain.values()) System.out.println(c);
public static LogDomain valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null