public enum FormItemElementType extends java.lang.Enum<FormItemElementType> implements ValueEnum
Enum Constant and Description |
---|
CELL
The form item as a whole, including the text element, any icons, and any hint text for the item.
|
CONTROL
The "control" cell containing the text box and picker
|
PICKER_ICON
The cell containing the item's picker icon, if it has one
|
TEXT_BOX
The item's native text box, if it has one
|
TITLE
The cell containing the title
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static FormItemElementType |
valueOf(java.lang.String name)
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.
|
public static final FormItemElementType CELL
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "cell".
public static final FormItemElementType CONTROL
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "control".
public static final FormItemElementType PICKER_ICON
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "pickerIcon".
public static final FormItemElementType TEXT_BOX
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "textBox".
public static final FormItemElementType TITLE
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "title".
public static FormItemElementType[] values()
for (FormItemElementType c : FormItemElementType.values()) System.out.println(c);
public static FormItemElementType 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