public enum FormSpecificType extends Enum<FormSpecificType>
| Enum Constant and Description |
|---|
CHECK_BOX |
COMBO_BOX |
DATE_TIME |
DROP_DOWN_LIST |
PICTURE |
RADIO |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static FormSpecificType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormSpecificType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormSpecificType TEXT
public static final FormSpecificType CHECK_BOX
public static final FormSpecificType PICTURE
public static final FormSpecificType COMBO_BOX
public static final FormSpecificType DROP_DOWN_LIST
public static final FormSpecificType DATE_TIME
public static final FormSpecificType RADIO
public static FormSpecificType[] values()
for (FormSpecificType c : FormSpecificType.values()) System.out.println(c);
public static FormSpecificType 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 © 2023–2024. All rights reserved.