public static enum LogEvent.Level extends Enum<LogEvent.Level>
Enum Constant and Description |
---|
DEBUG |
ERROR |
INFO |
TRACE |
UNKNOWN |
WARN |
Modifier and Type | Method and Description |
---|---|
String |
getLevel() |
static LogEvent.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogEvent.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogEvent.Level TRACE
public static final LogEvent.Level DEBUG
public static final LogEvent.Level INFO
public static final LogEvent.Level WARN
public static final LogEvent.Level ERROR
public static final LogEvent.Level UNKNOWN
public static LogEvent.Level[] values()
for (LogEvent.Level c : LogEvent.Level.values()) System.out.println(c);
public static LogEvent.Level 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 nullpublic String getLevel()
This work is licensed under a Creative Commons Attribution 4.0 International License.