public static enum LoggerFactory.LogLevel extends Enum<LoggerFactory.LogLevel>
| Enum Constant and Description |
|---|
DEBUG
The debug.
|
ERROR
The error.
|
INFO
The info.
|
OFF
The off.
|
TRACE
The trace.
|
WARN
The warn.
|
| Modifier and Type | Method and Description |
|---|---|
static LoggerFactory.LogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoggerFactory.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggerFactory.LogLevel TRACE
public static final LoggerFactory.LogLevel DEBUG
public static final LoggerFactory.LogLevel INFO
public static final LoggerFactory.LogLevel WARN
public static final LoggerFactory.LogLevel ERROR
public static final LoggerFactory.LogLevel OFF
public static LoggerFactory.LogLevel[] values()
for (LoggerFactory.LogLevel c : LoggerFactory.LogLevel.values()) System.out.println(c);
public static LoggerFactory.LogLevel 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 © 2018. All rights reserved.