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