public enum LoggerLevel extends Enum<LoggerLevel>
WARNING does not exist. This is an intentional design decision.| Enum Constant and Description |
|---|
DEBUG
SLF4J info level
|
ERROR
SLF4J info level
|
INFO
SLF4J info level
|
TRACE
SLF4J info level
|
| Modifier and Type | Method and Description |
|---|---|
static LoggerLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoggerLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggerLevel INFO
Logger.info(java.lang.String)public static final LoggerLevel ERROR
Logger.error(java.lang.String)public static final LoggerLevel DEBUG
Logger.debug(java.lang.String)public static final LoggerLevel TRACE
Logger.trace(java.lang.String)public static LoggerLevel[] values()
for (LoggerLevel c : LoggerLevel.values()) System.out.println(c);
public static LoggerLevel 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 © 2013–2020. All rights reserved.