public static enum LoggingHandler.Level extends Enum<LoggingHandler.Level>
Enum Constant and Description |
---|
DEBUG |
ERROR |
FATAL |
INFO |
TRACE |
WARN |
Modifier and Type | Method and Description |
---|---|
static LoggingHandler.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoggingHandler.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggingHandler.Level FATAL
public static final LoggingHandler.Level ERROR
public static final LoggingHandler.Level WARN
public static final LoggingHandler.Level INFO
public static final LoggingHandler.Level DEBUG
public static final LoggingHandler.Level TRACE
public static LoggingHandler.Level[] values()
for (LoggingHandler.Level c : LoggingHandler.Level.values()) System.out.println(c);
public static LoggingHandler.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 null