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