public static enum CalendarView.CalendarViewType extends Enum<CalendarView.CalendarViewType>
| Modifier and Type | Method and Description |
|---|---|
static CalendarView.CalendarViewType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CalendarView.CalendarViewType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarView.CalendarViewType MONTH
public static final CalendarView.CalendarViewType WEEK
public static final CalendarView.CalendarViewType DAY
public static CalendarView.CalendarViewType[] values()
for (CalendarView.CalendarViewType c : CalendarView.CalendarViewType.values()) System.out.println(c);
public static CalendarView.CalendarViewType 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 nullCopyright © 2016–2018. All rights reserved.