| Enum Constant and Description |
|---|
CALENDAR |
CHART |
GANTT |
GRID |
HTML |
NONE |
RECURRENCE |
| Modifier and Type | Method and Description |
|---|---|
static ViewType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ViewType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewType CALENDAR
public static final ViewType CHART
public static final ViewType GANTT
public static final ViewType GRID
public static final ViewType HTML
public static final ViewType NONE
public static final ViewType RECURRENCE
public static ViewType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static ViewType[] values()
for (ViewType c : ViewType.values()) System.out.println(c);