public static enum MaterialDayPicker.Weekday extends java.lang.Enum<MaterialDayPicker.Weekday>
| Enum Constant and Description |
|---|
FRIDAY |
MONDAY |
SATURDAY |
SUNDAY |
THURSDAY |
TUESDAY |
WEDNESDAY |
| Modifier and Type | Method and Description |
|---|---|
static java.util.List<MaterialDayPicker.Weekday> |
getAllDays() |
static MaterialDayPicker.Weekday |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MaterialDayPicker.Weekday[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MaterialDayPicker.Weekday SUNDAY
public static final MaterialDayPicker.Weekday MONDAY
public static final MaterialDayPicker.Weekday TUESDAY
public static final MaterialDayPicker.Weekday WEDNESDAY
public static final MaterialDayPicker.Weekday THURSDAY
public static final MaterialDayPicker.Weekday FRIDAY
public static final MaterialDayPicker.Weekday SATURDAY
public static MaterialDayPicker.Weekday[] values()
for (MaterialDayPicker.Weekday c : MaterialDayPicker.Weekday.values()) System.out.println(c);
public static MaterialDayPicker.Weekday 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 nullpublic static java.util.List<MaterialDayPicker.Weekday> getAllDays()