public enum LoggerLevel extends Enum<LoggerLevel>
| Enum Constant and Description |
|---|
ALL |
CONFIG |
FINE |
FINER |
FINEST |
INFO |
OFF |
SEVERE |
UNDEFINED |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
Level |
level() |
static LoggerLevel |
level(Level lvl) |
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 UNDEFINED
public static final LoggerLevel ALL
public static final LoggerLevel FINEST
public static final LoggerLevel FINER
public static final LoggerLevel FINE
public static final LoggerLevel CONFIG
public static final LoggerLevel INFO
public static final LoggerLevel WARNING
public static final LoggerLevel SEVERE
public static final LoggerLevel OFF
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 nullpublic Level level()
public static LoggerLevel level(Level lvl)
Copyright © 2019. All rights reserved.