public enum EnumInputType extends Enum<EnumInputType>
| Enum Constant and Description |
|---|
BOOLEAN
Boolean input.
|
DATE
Date input.
|
DATETIME
Date and time input.
|
SELECT_MANY_CHECKBOX
Checkboxes input.
|
SELECT_ONE_MENU
Drop-down box input.
|
SELECT_ONE_RADIO
Radio Button input.
|
SELECTONE
Drop-down box input.
|
TEXT
Text input.
|
TIME
Time input.
|
| Modifier and Type | Method and Description |
|---|---|
static EnumInputType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumInputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumInputType TEXT
public static final EnumInputType DATE
public static final EnumInputType DATETIME
public static final EnumInputType SELECTONE
public static final EnumInputType BOOLEAN
public static final EnumInputType TIME
public static final EnumInputType SELECT_ONE_MENU
public static final EnumInputType SELECT_ONE_RADIO
public static final EnumInputType SELECT_MANY_CHECKBOX
public static EnumInputType[] values()
for (EnumInputType c : EnumInputType.values()) System.out.println(c);
public static EnumInputType 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 © 2020 Samply Community. All rights reserved.