public static enum LogEvent.Level extends 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(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(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 © 2019. All rights reserved.