public static enum LoggingConfigurator.Level extends Enum<LoggingConfigurator.Level>
| Enum Constant and Description |
|---|
ALL |
DEBUG |
ERROR |
INFO |
OFF |
TRACE |
WARN |
| Modifier and Type | Field and Description |
|---|---|
(package private) ch.qos.logback.classic.Level |
logbackLevel |
| Modifier and Type | Method and Description |
|---|---|
static LoggingConfigurator.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoggingConfigurator.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggingConfigurator.Level OFF
public static final LoggingConfigurator.Level ERROR
public static final LoggingConfigurator.Level WARN
public static final LoggingConfigurator.Level INFO
public static final LoggingConfigurator.Level DEBUG
public static final LoggingConfigurator.Level TRACE
public static final LoggingConfigurator.Level ALL
public static LoggingConfigurator.Level[] values()
for (LoggingConfigurator.Level c : LoggingConfigurator.Level.values()) System.out.println(c);
public static LoggingConfigurator.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 © 2016. All Rights Reserved.