public static enum DateBox.PickerStyle extends Enum<DateBox.PickerStyle>
| Enum Constant and Description |
|---|
MODAL
Shows the date picker in a model
|
POPOVER
Shows the date picker in a popover
|
| Modifier and Type | Method and Description |
|---|---|
static DateBox.PickerStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DateBox.PickerStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DateBox.PickerStyle MODAL
public static final DateBox.PickerStyle POPOVER
public static DateBox.PickerStyle[] values()
for (DateBox.PickerStyle c : DateBox.PickerStyle.values()) System.out.println(c);
public static DateBox.PickerStyle 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 © 2019–2022 Dominokit. All rights reserved.