public static enum Tracer.Level extends Enum<Tracer.Level>
Enum Constant and Description |
---|
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 |
Modifier and Type | Field and Description |
---|---|
int |
val |
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 nameNullPointerException
- if the argument is nullCopyright © 2019 Neeve Research, LLC. All Rights Reserved.