public static enum LoggerLevelThreshold.LoggerLevel extends Enum<LoggerLevelThreshold.LoggerLevel>
| Modifier and Type | Method and Description |
|---|---|
static LoggerLevelThreshold.LoggerLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoggerLevelThreshold.LoggerLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggerLevelThreshold.LoggerLevel DEBUG
public static final LoggerLevelThreshold.LoggerLevel INFO
public static final LoggerLevelThreshold.LoggerLevel WARN
public static final LoggerLevelThreshold.LoggerLevel ERROR
public static LoggerLevelThreshold.LoggerLevel[] values()
for (LoggerLevelThreshold.LoggerLevel c : LoggerLevelThreshold.LoggerLevel.values()) System.out.println(c);
public static LoggerLevelThreshold.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 © 2020. All rights reserved.