|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Level>
flux.logging.Level
public enum Level
Enumerates supported logging levels. These levels correspond to the logging levels in the JDK; however, there are standard mappings to Log4j. These standard mappings are described within each logging level.
The levels in descending order are: SEVERE (highest value)
Enum Constant Summary | |
---|---|
CONFIG
CONFIG is a message level for static configuration messages. |
|
FINE
FINE is a message level providing tracing information. |
|
FINER
FINER indicates a fairly detailed tracing message. |
|
FINEST
FINEST indicates a highly detailed tracing message. |
|
INFO
INFO is a message level for informational messages. |
|
SEVERE
SEVERE is a message level indicating a serious failure. |
|
WARNING
WARNING is a message level indicating a potential problem. |
Method Summary | |
---|---|
static Level |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Level[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Level SEVERE
public static final Level WARNING
public static final Level INFO
public static final Level CONFIG
public static final Level FINE
public static final Level FINER
public static final Level FINEST
Method Detail |
---|
public static Level[] values()
for (Level c : Level.values()) System.out.println(c);
public static 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |