public enum LogType extends java.lang.Enum<LogType> implements IntegerType
枚举常量和说明 |
---|
LOG_FAILED
失败
|
LOG_NONE
无
|
LOG_SKIP
跳过
|
LOG_SUCCESS
成功
|
限定符和类型 | 方法和说明 |
---|---|
int |
getValue() |
static LogType |
parse(int value) |
void |
setValue(int value) |
int |
toInteger()
枚举值转为整数结果
|
static LogType |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static LogType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final LogType LOG_FAILED
public static final LogType LOG_SUCCESS
public static final LogType LOG_SKIP
public static final LogType LOG_NONE
public static LogType[] values()
for (LogType c : LogType.values()) System.out.println(c);
public static LogType valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值public int toInteger()
IntegerType
toInteger
在接口中 IntegerType
public static LogType parse(int value)
public int getValue()
public void setValue(int value)