public static enum LogEvent.Level extends java.lang.Enum<LogEvent.Level>
Enum Constant and Description |
---|
DEBUG
Useful for debugging.
|
ERROR
Something went wrong.
|
INFO
Details that can be ignored.
|
LIFECYCLE
Default.
|
PROGRESS
Same as
LIFECYCLE , except represents progress updates. |
WARN
Something might not work as intended.
|
Modifier and Type | Method and Description |
---|---|
static LogEvent.Level |
valueOf(java.lang.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 ERROR
public static final LogEvent.Level WARN
public static final LogEvent.Level LIFECYCLE
public static final LogEvent.Level PROGRESS
LIFECYCLE
, except represents progress updates.public static final LogEvent.Level INFO
Use LIFECYCLE
for progress-indicating messages.
public static final LogEvent.Level DEBUG
public static LogEvent.Level[] values()
for (LogEvent.Level c : LogEvent.Level.values()) System.out.println(c);
public static LogEvent.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