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