public static enum TimePickerView.Type extends java.lang.Enum<TimePickerView.Type>
| Enum Constant and Description |
|---|
ALL |
HOUR_MIN_APPM |
HOUR_MIN_SEC |
HOURS_MINS |
MONTH_DAY_HOUR_MIN |
YEAR_MONTH |
YEAR_MONTH_DAY |
| Modifier and Type | Method and Description |
|---|---|
static TimePickerView.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TimePickerView.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimePickerView.Type ALL
public static final TimePickerView.Type YEAR_MONTH_DAY
public static final TimePickerView.Type HOURS_MINS
public static final TimePickerView.Type MONTH_DAY_HOUR_MIN
public static final TimePickerView.Type YEAR_MONTH
public static final TimePickerView.Type HOUR_MIN_SEC
public static final TimePickerView.Type HOUR_MIN_APPM
public static TimePickerView.Type[] values()
for (TimePickerView.Type c : TimePickerView.Type.values()) System.out.println(c);
public static TimePickerView.Type 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