public enum DTBLogLevel extends java.lang.Enum<DTBLogLevel>
| Enum Constant and Description |
|---|
All |
Debug |
Error |
Fatal |
Info |
Off |
Trace |
Warn |
| Modifier and Type | Method and Description |
|---|---|
int |
intValue() |
static DTBLogLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DTBLogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DTBLogLevel All
public static final DTBLogLevel Trace
public static final DTBLogLevel Debug
public static final DTBLogLevel Info
public static final DTBLogLevel Warn
public static final DTBLogLevel Error
public static final DTBLogLevel Fatal
public static final DTBLogLevel Off
public static DTBLogLevel[] values()
for (DTBLogLevel c : DTBLogLevel.values()) System.out.println(c);
public static DTBLogLevel 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 int intValue()