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