public static enum DOF.Log.Level extends java.lang.Enum<DOF.Log.Level>
Enum Constant and Description |
---|
DEBUG
Logging priority level indicating fine-grained informational events that are
most useful to debug an application.
|
ERROR
Logging priority level indicating an error condition that may still
allow the application to continue running.
|
FATAL
Logging priority level indicating that action is required immediately.
|
INFO
Logging priority level indicating high level informational messages.
|
TRACE
Logging priority level indicating trace debug information.
|
WARN
Logging priority level indicating a normal but potentially harmful condition.
|
Modifier and Type | Method and Description |
---|---|
static DOF.Log.Level |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DOF.Log.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DOF.Log.Level FATAL
public static final DOF.Log.Level ERROR
public static final DOF.Log.Level WARN
public static final DOF.Log.Level INFO
public static final DOF.Log.Level DEBUG
public static final DOF.Log.Level TRACE
public static DOF.Log.Level[] values()
for (DOF.Log.Level c : DOF.Log.Level.values()) System.out.println(c);
public static DOF.Log.Level 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 null