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