public enum ShowType extends java.lang.Enum<ShowType> implements IntegerType
| 限定符和类型 | 方法和说明 | 
|---|---|
| int | getValue() | 
| static ShowType | parse(int value) | 
| void | setValue(int value) | 
| int | toInteger()枚举值转为整数结果 | 
| 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 FORM
public static final ShowType WRITE_PLUS
public static final ShowType NONE
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 toInteger()
IntegerTypetoInteger 在接口中 IntegerTypepublic static ShowType parse(int value)
public int getValue()
public void setValue(int value)