public enum FormItemType extends java.lang.Enum<FormItemType> implements ValueEnum
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getValue() | 
| static FormItemType | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static FormItemType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final FormItemType TEXT
TextItem, unless the lenght of the field (as specified by
 length  attribute) is larger than the value
 specified by
 longTextEditorThreshold , a
 TextAreaItem is shown.public static final FormItemType BOOLEAN
CheckboxItempublic static final FormItemType INTEGER
text by default.                     Consider setting editorType: SpinnerItempublic static final FormItemType FLOAT
text by default.                     Consider setting editorType: SpinnerItem.public static final FormItemType DATE
DateItempublic static final FormItemType TIME
TimeItempublic static final FormItemType DATETIME
DateTimeItempublic static final FormItemType ENUM
SelectItem.  Also true for any field that specifies a
 FormItem.setValueMap(String[])    
                   Consider setting
 editorType: ComboBoxItem.public static final FormItemType SEQUENCE
textpublic static final FormItemType LINK
public static final FormItemType IMAGE
public static final FormItemType CHECKBOX
public static final FormItemType STATIC_TEXT
public static final FormItemType BLOB
public static final FormItemType MULTI_FILE
public static final FormItemType MULTI_UPLOAD
public static final FormItemType UPLOAD
public static final FormItemType FILE
public static final FormItemType BASE64_BINARY
public static final FormItemType CYCLE_ITEM
public static final FormItemType SELECT_OTHER
public static final FormItemType RELATION
public static final FormItemType DATETIME_ITEM
public static final FormItemType SELECT_ITEM
public static final FormItemType HIDDEN_ITEM
public static final FormItemType HEADER_ITEM
public static final FormItemType DATE_ITEM
public static final FormItemType BLURB_ITEM
public static final FormItemType COMBOBOX_ITEM
public static final FormItemType MULTICOMBOBOX_ITEM
public static final FormItemType SPACER_ITEM
public static final FormItemType ROWSPACER_ITEM
public static final FormItemType CHECKBOX_ITEM
public static final FormItemType STATICTEXT_ITEM
public static final FormItemType LINK_ITEM
public static final FormItemType CANVAS_ITEM
public static final FormItemType PICKTREE_ITEM
public static final FormItemType BUTTON_ITEM
public static final FormItemType SUBMIT_ITEM
public static final FormItemType RESET_ITEM
public static final FormItemType RICHTEXT_ITEM
public static final FormItemType FILE_ITEM
public static final FormItemType SLIDER_ITEM
public static final FormItemType TOOLBAR_ITEM
public static final FormItemType SECTION_ITEM
public static final FormItemType TEXTAREA_ITEM
public static final FormItemType TEXT_ITEM
public static final FormItemType UPLOAD_ITEM
public static final FormItemType PASSWORD_ITEM
public static final FormItemType SPINNER_ITEM
public static final FormItemType TIME_ITEM
public static final FormItemType NATIVE_CHECKBOX_ITEM
public static final FormItemType RADIOGROUP_ITEM
public static final FormItemType IMAGEFILE
public static final FormItemType BINARY
UploadItempublic static FormItemType[] values()
for (FormItemType c : FormItemType.values()) System.out.println(c);
public static FormItemType 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