public enum LogEvent extends Enum<LogEvent>
Enum Constant and Description |
---|
DEBUG
Debug Log Event.
|
ERROR
Error Log Event.
|
FATAL
Fatal Log Event.
|
INFO
Info Log Event.
|
TRACE
Trace Log Event.
|
WARNING
Warning Log Event.
|
Modifier and Type | Method and Description |
---|---|
static LogEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogEvent TRACE
public static final LogEvent DEBUG
public static final LogEvent INFO
public static final LogEvent WARNING
public static final LogEvent ERROR
public static final LogEvent FATAL
public static LogEvent[] values()
for (LogEvent c : LogEvent.values()) System.out.println(c);
public static LogEvent 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 © 2013. All Rights Reserved.