|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Tracer.Level>
com.neeve.trace.Tracer.Level
public static enum Tracer.Level
Defines the various trace levels.
Enum Constant Summary | |
---|---|
ALL
See Level.ALL |
|
CONFIG
See Level.CONFIG |
|
DEBUG
Same level as FINEST |
|
DIAGNOSE
Same level as FINE |
|
FINE
See Level.FINE |
|
FINER
See Level.FINER |
|
FINEST
See Level.FINEST |
|
INFO
See Level.INFO |
|
OFF
See Level.OFF |
|
SEVERE
See Level.SEVERE |
|
VERBOSE
Same level as FINER |
|
WARNING
See Level.WARNING |
Field Summary | |
---|---|
int |
val
|
Method Summary | |
---|---|
static Tracer.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Tracer.Level[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Tracer.Level OFF
Level.OFF
public static final Tracer.Level SEVERE
Level.SEVERE
public static final Tracer.Level WARNING
Level.WARNING
public static final Tracer.Level INFO
Level.INFO
public static final Tracer.Level CONFIG
Level.CONFIG
public static final Tracer.Level FINE
Level.FINE
public static final Tracer.Level DIAGNOSE
public static final Tracer.Level FINER
Level.FINER
public static final Tracer.Level VERBOSE
public static final Tracer.Level FINEST
Level.FINEST
public static final Tracer.Level DEBUG
public static final Tracer.Level ALL
Level.ALL
Field Detail |
---|
public final int val
Method Detail |
---|
public static Tracer.Level[] values()
for (Tracer.Level c : Tracer.Level.values()) System.out.println(c);
public static Tracer.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 name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |