public static enum LogInfo.LogLevel extends java.lang.Enum<LogInfo.LogLevel>
Enum Constant and Description |
---|
LOG_DEBUG |
LOG_ERROR |
LOG_INFO |
LOG_WARN |
Modifier and Type | Method and Description |
---|---|
static LogInfo.LogLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogInfo.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogInfo.LogLevel LOG_DEBUG
public static final LogInfo.LogLevel LOG_INFO
public static final LogInfo.LogLevel LOG_WARN
public static final LogInfo.LogLevel LOG_ERROR
public static LogInfo.LogLevel[] values()
for (LogInfo.LogLevel c : LogInfo.LogLevel.values()) System.out.println(c);
public static LogInfo.LogLevel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null