|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<LogHandler.LogGrade>
at.tuwien.ifs.feature.extraction.audio.util.LogHandler.LogGrade
public static enum LogHandler.LogGrade
Enum Constant Summary | |
---|---|
ERROR
Errors |
|
EXTRA_INFO
Most chatty |
|
INFO
Verboose |
|
SAME
Use the same grade as in the last call, and also stay in the same line! (Only possible if the logger has not been flushed since the last log) |
|
SEVERE
Serious errors. |
|
WARNING
Warnings |
Method Summary | |
---|---|
static LogHandler.LogGrade |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static LogHandler.LogGrade[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, 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 LogHandler.LogGrade EXTRA_INFO
public static final LogHandler.LogGrade INFO
public static final LogHandler.LogGrade WARNING
public static final LogHandler.LogGrade ERROR
public static final LogHandler.LogGrade SEVERE
public static final LogHandler.LogGrade SAME
Method Detail |
---|
public static LogHandler.LogGrade[] values()
for (LogHandler.LogGrade c : LogHandler.LogGrade.values()) System.out.println(c);
public static LogHandler.LogGrade 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 |