Enum LocalDateField.DropDownMode
- java.lang.Object
-
- java.lang.Enum<LocalDateField.DropDownMode>
-
- org.teamapps.ux.component.field.datetime.LocalDateField.DropDownMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<LocalDateField.DropDownMode>
- Enclosing class:
- LocalDateField
public static enum LocalDateField.DropDownMode extends java.lang.Enum<LocalDateField.DropDownMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CALENDARCALENDAR_SUGGESTION_LISTSUGGESTION_LIST
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LocalDateField.DropDownModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LocalDateField.DropDownMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CALENDAR
public static final LocalDateField.DropDownMode CALENDAR
-
CALENDAR_SUGGESTION_LIST
public static final LocalDateField.DropDownMode CALENDAR_SUGGESTION_LIST
-
SUGGESTION_LIST
public static final LocalDateField.DropDownMode SUGGESTION_LIST
-
-
Method Detail
-
values
public static LocalDateField.DropDownMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LocalDateField.DropDownMode c : LocalDateField.DropDownMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LocalDateField.DropDownMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-