public static enum CalendarPickerView.SelectionMode extends java.lang.Enum<CalendarPickerView.SelectionMode>
| Enum Constant and Description |
|---|
MULTIPLE
Multiple dates will be selectable.
|
RANGE
Allows you to select a date range.
|
SINGLE
Only one date will be selectable.
|
| Modifier and Type | Method and Description |
|---|---|
static CalendarPickerView.SelectionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CalendarPickerView.SelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarPickerView.SelectionMode SINGLE
public static final CalendarPickerView.SelectionMode MULTIPLE
public static final CalendarPickerView.SelectionMode RANGE
public static CalendarPickerView.SelectionMode[] values()
for (CalendarPickerView.SelectionMode c : CalendarPickerView.SelectionMode.values()) System.out.println(c);
public static CalendarPickerView.SelectionMode 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