public enum DatePickerDayOfWeek extends Enum<DatePickerDayOfWeek>
Enum Constant and Description |
---|
FRIDAY |
MONDAY |
SATURDAY |
SUNDAY |
THURSDAY |
TUESDAY |
WEDNESDAY |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static DatePickerDayOfWeek |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatePickerDayOfWeek[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatePickerDayOfWeek SUNDAY
public static final DatePickerDayOfWeek MONDAY
public static final DatePickerDayOfWeek TUESDAY
public static final DatePickerDayOfWeek WEDNESDAY
public static final DatePickerDayOfWeek THURSDAY
public static final DatePickerDayOfWeek FRIDAY
public static final DatePickerDayOfWeek SATURDAY
public static DatePickerDayOfWeek[] values()
for (DatePickerDayOfWeek c : DatePickerDayOfWeek.values()) System.out.println(c);
public static DatePickerDayOfWeek 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 nullpublic int getValue()
Copyright © 2017. All rights reserved.