public enum Level extends java.lang.Enum<Level>
The levels in descending order are:
Enum Constant and Description |
---|
ALL
ALL indicates that all messages should be logged.
|
DEBUG
DEBUG is a message level providing debug information.
|
ERROR
ERROR is a message level indicating a serious failure.
|
INFO
INFO is a message level for informational messages.
|
OFF
OFF is a special level that can be used to turn off logging.
|
TRACE
TRACE is a message level providing highly detailed tracing information.
|
WARNING
WARNING is a message level indicating a potential problem.
|
Modifier and Type | Method and Description |
---|---|
static Level |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Level OFF
public static final Level ALL
public static final Level ERROR
public static final Level WARNING
public static final Level INFO
public static final Level DEBUG
public static final Level TRACE
public static Level[] values()
for (Level c : Level.values()) System.out.println(c);
public static Level 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 null