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