public enum CalendarDisplayMode extends Enum<CalendarDisplayMode>
RadCalendarView
.Enum Constant and Description |
---|
Day
The calendar view displays the events for a selected day.
|
Month
The calendar view displays one month.
|
Week
The calendar view displays a single week.
|
Year
The calendar view displays a whole year.
|
Modifier and Type | Method and Description |
---|---|
static CalendarDisplayMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CalendarDisplayMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarDisplayMode Month
public static final CalendarDisplayMode Year
public static final CalendarDisplayMode Week
public static final CalendarDisplayMode Day
public static CalendarDisplayMode[] values()
for (CalendarDisplayMode c : CalendarDisplayMode.values()) System.out.println(c);
public static CalendarDisplayMode 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 null