public static enum AFLogger.LogLevel extends java.lang.Enum<AFLogger.LogLevel>
Enum Constant and Description |
---|
DEBUG |
ERROR |
INFO |
NONE |
VERBOSE |
WARNING |
Modifier and Type | Method and Description |
---|---|
int |
getLevel() |
static AFLogger.LogLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AFLogger.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AFLogger.LogLevel NONE
public static final AFLogger.LogLevel ERROR
public static final AFLogger.LogLevel WARNING
public static final AFLogger.LogLevel INFO
public static final AFLogger.LogLevel DEBUG
public static final AFLogger.LogLevel VERBOSE
public static AFLogger.LogLevel[] values()
for (AFLogger.LogLevel c : AFLogger.LogLevel.values()) System.out.println(c);
public static AFLogger.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 nullpublic int getLevel()