public static enum DatePicker.Error extends Enum<DatePicker.Error>
Enum Constant and Description |
---|
DATE_GREATER_THAN_MAX |
DATE_LESS_THAN_MIN |
UNPARSABLE |
Modifier and Type | Method and Description |
---|---|
static DatePicker.Error |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatePicker.Error[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatePicker.Error DATE_GREATER_THAN_MAX
public static final DatePicker.Error DATE_LESS_THAN_MIN
public static final DatePicker.Error UNPARSABLE
public static DatePicker.Error 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 static DatePicker.Error[] values()
for (DatePicker.Error c : DatePicker.Error.values()) System.out.println(c);
Copyright © 2013 ExtFX. All Rights Reserved.