public static enum DelayedLogItem.Level extends java.lang.Enum<DelayedLogItem.Level>
Enum Constant and Description |
---|
ALL |
CONFIG |
FINE |
FINER |
FINEST |
INFO |
OFF |
SEVERE |
WARNING |
Modifier and Type | Method and Description |
---|---|
static DelayedLogItem.Level |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DelayedLogItem.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DelayedLogItem.Level ALL
public static final DelayedLogItem.Level CONFIG
public static final DelayedLogItem.Level FINE
public static final DelayedLogItem.Level FINER
public static final DelayedLogItem.Level FINEST
public static final DelayedLogItem.Level INFO
public static final DelayedLogItem.Level OFF
public static final DelayedLogItem.Level SEVERE
public static final DelayedLogItem.Level WARNING
public static DelayedLogItem.Level[] values()
for (DelayedLogItem.Level c : DelayedLogItem.Level.values()) System.out.println(c);
public static DelayedLogItem.Level 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