public enum CalendarView extends java.lang.Enum<CalendarView>
Enum Constant and Description |
---|
List
The calendar displays several seconds, minutes, hours, days, weeks,
months or years in a row or a column.
|
MonthRange
The calendar displays several months in a grid.
|
ResourceView
The calendar displays the distribution of items over a period of time.
|
SingleMonth
The calendar displays a single month at a time.
|
Timetable
The calendar displays a timetable where each row represents a fixed
arbitrary time interval and each column represents a day.
|
WeekRange
The calendar displays a grid of days, with the columns representing
the week days from Monday to Sunday and the rows representing weeks.
|
Modifier and Type | Method and Description |
---|---|
static CalendarView |
valueOf(java.lang.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 MonthRange
public static final CalendarView SingleMonth
public static final CalendarView WeekRange
public static final CalendarView List
public static final CalendarView Timetable
public static final CalendarView ResourceView
public static CalendarView[] values()
for (CalendarView c : CalendarView.values()) System.out.println(c);
public static CalendarView 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 null