枚举常量和说明 |
---|
ACTION |
BOTTOM |
DOCUMENT |
FILE |
MORE |
NO_RESULT |
PLUGIN |
RECOMMEND |
RECOMMEND_ROBOT |
REUSE |
ROBOT |
限定符和类型 | 方法和说明 |
---|---|
int |
getTypeValue() |
static CellType |
parse(int typeValue) |
void |
setTypeValue(int typeValue) |
static CellType |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static CellType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final CellType RECOMMEND
public static final CellType ACTION
public static final CellType DOCUMENT
public static final CellType FILE
public static final CellType PLUGIN
public static final CellType REUSE
public static final CellType NO_RESULT
public static final CellType MORE
public static final CellType RECOMMEND_ROBOT
public static final CellType BOTTOM
public static final CellType ROBOT
public static CellType[] values()
for (CellType c : CellType.values()) System.out.println(c);
public static CellType valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值public static CellType parse(int typeValue)
public int getTypeValue()
public void setTypeValue(int typeValue)