Enum Class FormControlType
- All Implemented Interfaces:
Serializable,Comparable<FormControlType>,Constable
Represents the type of form controls.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe type of this control isIButton.The type of this control isICheckBox.The type of this control isIDropDown.The type of this control isIGroupBox.The type of this control isILabel.The type of this control isIListBox.The type of this control isIOptionButton.The type of this control isIScrollBar.The type of this control isISpinner. -
Method Summary
Modifier and TypeMethodDescriptionstatic FormControlTypeReturns the enum constant of this class with the specified name.static FormControlType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Button
The type of this control isIButton. -
CheckBox
The type of this control isICheckBox. -
DropDown
The type of this control isIDropDown. -
GroupBox
The type of this control isIGroupBox. -
Label
The type of this control isILabel. -
ListBox
The type of this control isIListBox. -
OptionButton
The type of this control isIOptionButton. -
ScrollBar
The type of this control isIScrollBar. -
Spinner
The type of this control isISpinner.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-