public enum ExecuteType extends java.lang.Enum<ExecuteType>
枚举常量和说明 |
---|
EXECUTECLASS |
FORMULA |
NOLIMIT |
限定符和类型 | 方法和说明 |
---|---|
static ExecuteType |
parse(int p)
将整数转换成枚举类型
|
int |
toInt() |
static ExecuteType |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static ExecuteType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final ExecuteType NOLIMIT
public static final ExecuteType FORMULA
public static final ExecuteType EXECUTECLASS
public static ExecuteType[] values()
for (ExecuteType c : ExecuteType.values()) System.out.println(c);
public static ExecuteType valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值public int toInt()
public static ExecuteType parse(int p)
p
- 待转换的整数