public static enum LogUtil.LogLevel extends Enum<LogUtil.LogLevel>
| Enum Constant and Description |
|---|
LEVEL_DIAGNOSE
Show diagnose messages
|
LEVEL_MUTE
Mute
|
LEVEL_VERBOSE
Show detail progress logs
|
LEVEL_WARN
Warn only
|
| 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 LEVEL_MUTE
public static final LogUtil.LogLevel LEVEL_WARN
public static final LogUtil.LogLevel LEVEL_DIAGNOSE
public static final LogUtil.LogLevel LEVEL_VERBOSE
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 © 2020. All rights reserved.