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