public enum CalendarSelectionMode extends Enum<CalendarSelectionMode>
RadCalendarView
.Enum Constant and Description |
---|
Multiple
When
RadCalendarView
is in Multiple selection mode, the selected dates can be more than
one at the same time. |
None
When
RadCalendarView
is in None selection mode, no date can be selected. |
Range
When
RadCalendarView
is in Range selection mode, the selected dates can be more than
one as long as they form a range of consecutive dates. |
Single
When
RadCalendarView
is in Single selection mode, only one date
can be selected at a time. |
Modifier and Type | Method and Description |
---|---|
static CalendarSelectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CalendarSelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarSelectionMode None
RadCalendarView
is in None selection mode, no date can be selected.public static final CalendarSelectionMode Single
RadCalendarView
is in Single selection mode, only one date
can be selected at a time.public static final CalendarSelectionMode Range
RadCalendarView
is in Range selection mode, the selected dates can be more than
one as long as they form a range of consecutive dates.public static final CalendarSelectionMode Multiple
RadCalendarView
is in Multiple selection mode, the selected dates can be more than
one at the same time.public static CalendarSelectionMode[] values()
for (CalendarSelectionMode c : CalendarSelectionMode.values()) System.out.println(c);
public static CalendarSelectionMode 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