public enum CalendarView extends Enum<CalendarView>
| Enum Constant and Description |
|---|
agendaDay |
agendaWeek |
basicDay |
basicWeek |
month |
resourceDay |
resourceMonth |
resourceNextWeeks |
resourceWeek |
| Modifier and Type | Method and Description |
|---|---|
static CalendarView |
get(String viewName)
Safely get the
CalendarView corresponding to the supplied view name |
static CalendarView |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CalendarView[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarView month
public static final CalendarView basicWeek
public static final CalendarView basicDay
public static final CalendarView agendaWeek
public static final CalendarView agendaDay
public static final CalendarView resourceDay
public static final CalendarView resourceWeek
public static final CalendarView resourceNextWeeks
public static final CalendarView resourceMonth
public static CalendarView[] values()
for (CalendarView c : CalendarView.values()) System.out.println(c);
public static CalendarView valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static CalendarView get(String viewName)
CalendarView corresponding to the supplied view nameviewName - the view nameCopyright © 2021 7thWeb. All rights reserved.