public static enum LoggerTextView.LogType extends java.lang.Enum<LoggerTextView.LogType>
| Enum Constant and Description |
|---|
CUSTOM
自定义等级日志
|
ERROR
出错日志
|
NORMAL
普通日志
|
SUCCESS
成功日志
|
WARNING
警告日志
|
| Modifier and Type | Method and Description |
|---|---|
static LoggerTextView.LogType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LoggerTextView.LogType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggerTextView.LogType NORMAL
public static final LoggerTextView.LogType SUCCESS
public static final LoggerTextView.LogType ERROR
public static final LoggerTextView.LogType WARNING
public static final LoggerTextView.LogType CUSTOM
public static LoggerTextView.LogType[] values()
for (LoggerTextView.LogType c : LoggerTextView.LogType.values()) System.out.println(c);
public static LoggerTextView.LogType 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