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