public enum FormControlType extends java.lang.Enum<FormControlType>
| Enum Constant and Description |
|---|
Button
The type of this control is
IButton . |
CheckBox
The type of this control is
ICheckBox . |
DropDown
The type of this control is
IDropDown . |
GroupBox
The type of this control is
IGroupBox . |
Label
The type of this control is
ILabel . |
ListBox
The type of this control is
IListBox . |
OptionButton
The type of this control is
IOptionButton . |
ScrollBar
The type of this control is
IScrollBar . |
Spinner
The type of this control is
ISpinner . |
| Modifier and Type | Method and Description |
|---|---|
static FormControlType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FormControlType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormControlType Button
IButton .public static final FormControlType CheckBox
ICheckBox .public static final FormControlType DropDown
IDropDown .public static final FormControlType GroupBox
IGroupBox .public static final FormControlType Label
ILabel .public static final FormControlType ListBox
IListBox .public static final FormControlType OptionButton
IOptionButton .public static final FormControlType ScrollBar
IScrollBar .public static final FormControlType Spinner
ISpinner .public static FormControlType[] values()
for (FormControlType c : FormControlType.values()) System.out.println(c);
public static FormControlType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null