public static enum SimpleLogger.LogLevel extends java.lang.Enum<SimpleLogger.LogLevel>
Enum Constant and Description |
---|
DEBUG
Included all output from error, warn, info & debug.
|
ERROR
Only included output from error.
|
INFO
Included all output from error, warn & info.
|
WARN
Included all output from error & warn.
|
Modifier and Type | Method and Description |
---|---|
static SimpleLogger.LogLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SimpleLogger.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleLogger.LogLevel DEBUG
public static final SimpleLogger.LogLevel INFO
public static final SimpleLogger.LogLevel WARN
public static final SimpleLogger.LogLevel ERROR
public static SimpleLogger.LogLevel[] values()
for (SimpleLogger.LogLevel c : SimpleLogger.LogLevel.values()) System.out.println(c);
public static SimpleLogger.LogLevel 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