Package com.smartgwt.client.types
Enum FormItemElementType
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<FormItemElementType>
,Constable
HTML elements that make up a complete FormItem (note, not all FormItems use all of these elements)
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe form item as a whole, including the text element, any icons, and any hint text for the item.The "control" cell containing the text box and pickerThe cell containing the item's picker icon, if it has oneThe item's native text box, if it has oneThe cell containing the title -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static FormItemElementType
Returns the enum constant of this type with the specified name.static FormItemElementType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CELL
The form item as a whole, including the text element, any icons, and any hint text for the item. This is the cell containing the form itemIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "cell". -
CONTROL
The "control" cell containing the text box and pickerIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "control". -
PICKER_ICON
The cell containing the item's picker icon, if it has oneIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "pickerIcon". -
TEXT_BOX
The item's native text box, if it has oneIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "textBox". -
TITLE
The cell containing the titleIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "title".
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
-