public static enum LogLevelEntity.LogLevel extends Enum<LogLevelEntity.LogLevel>
Enum Constant and Description |
---|
DEBUG |
DEFAULT |
ERROR |
FATAL |
INFO |
TRACE |
WARNING |
Modifier and Type | Method and Description |
---|---|
static LogLevelEntity.LogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogLevelEntity.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogLevelEntity.LogLevel FATAL
public static final LogLevelEntity.LogLevel ERROR
public static final LogLevelEntity.LogLevel WARNING
public static final LogLevelEntity.LogLevel INFO
public static final LogLevelEntity.LogLevel DEBUG
public static final LogLevelEntity.LogLevel TRACE
public static final LogLevelEntity.LogLevel DEFAULT
public static LogLevelEntity.LogLevel[] values()
for (LogLevelEntity.LogLevel c : LogLevelEntity.LogLevel.values()) System.out.println(c);
public static LogLevelEntity.LogLevel 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 nullCopyright © 2016 ArangoDB GmbH. All rights reserved.