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