|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<TLptsLogger.LOG_TYPE>
com.lapetus_ltd.api.common.logger.TLptsLogger.LOG_TYPE
public static enum TLptsLogger.LOG_TYPE
Type of log to record. Either ERROR, WARNING, DEBUG or MESSAGE.
Enum Constant Summary | |
---|---|
DEBUG
This is used to show that a log is a debug message. |
|
ERROR
This is used to show that a log is an error. |
|
MESSAGE
This is used to show that a log is a message. |
|
RESET
This is used to reset the listeners. |
|
WARNING
This is used to show that a log is a warning. |
Method Summary | |
---|---|
static TLptsLogger.LOG_TYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TLptsLogger.LOG_TYPE[] |
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 TLptsLogger.LOG_TYPE DEBUG
public static final TLptsLogger.LOG_TYPE ERROR
public static final TLptsLogger.LOG_TYPE MESSAGE
public static final TLptsLogger.LOG_TYPE RESET
public static final TLptsLogger.LOG_TYPE WARNING
Method Detail |
---|
public static TLptsLogger.LOG_TYPE 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 nullpublic static TLptsLogger.LOG_TYPE[] values()
for (TLptsLogger.LOG_TYPE c : TLptsLogger.LOG_TYPE.values()) System.out.println(c);
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |