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