public static enum DateTextFieldConfig.TodayButton extends Enum<DateTextFieldConfig.TodayButton>
See docs. Today button could be a boolean or string “linked”: If true or “linked”, displays a “Today” button at the bottom of the datepicker to select the current date. If true, the “Today” button will only move the current date into view; if “linked”, the current date will also be selected.
| Modifier and Type | Method and Description |
|---|---|
static DateTextFieldConfig.TodayButton |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DateTextFieldConfig.TodayButton[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DateTextFieldConfig.TodayButton TRUE
public static final DateTextFieldConfig.TodayButton FALSE
public static final DateTextFieldConfig.TodayButton LINKED
public static DateTextFieldConfig.TodayButton[] values()
for (DateTextFieldConfig.TodayButton c : DateTextFieldConfig.TodayButton.values()) System.out.println(c);
public static DateTextFieldConfig.TodayButton 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 nullCopyright © 2011–2014 AgileCoders. All rights reserved.