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