|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<InternalLogLevel>
com.foxinmy.weixin4j.logging.InternalLogLevel
public enum InternalLogLevel
The log level that InternalLogger can log at.
| Enum Constant Summary | |
|---|---|
DEBUG
'DEBUG' log level. |
|
ERROR
'ERROR' log level. |
|
INFO
'INFO' log level. |
|
TRACE
'TRACE' log level. |
|
WARN
'WARN' log level. |
|
| Method Summary | |
|---|---|
static InternalLogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static InternalLogLevel[] |
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 InternalLogLevel TRACE
public static final InternalLogLevel DEBUG
public static final InternalLogLevel INFO
public static final InternalLogLevel WARN
public static final InternalLogLevel ERROR
| Method Detail |
|---|
public static InternalLogLevel[] values()
for (InternalLogLevel c : InternalLogLevel.values()) System.out.println(c);
public static InternalLogLevel valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||