public enum EFormFieldTyp extends Enum<EFormFieldTyp>
Enum Constant and Description |
---|
CHECKBOX
The checkbox type, ie. a
INPUT form element of type checkbox that has two states, checked and not
checked. |
SELECT
The select type, ie. a
SELECT form element with several options from which one can be selected. |
TEXTAREA
The textarea type, ie. a
TEXTAREA form element for textual input that support multiple lines. |
TEXTFIELD
The textfield type, ie. a
INPUT form element of type text that supports only a single line of text. |
UNKNOWN
The unknown type, ie. all form elements that are not of one of the other types.
|
UPLOAD
The upload type, ie. a
UPLOAD form element of type file that can be used to upload file from the
file system. |
WIDGET
The widget type, ie. any form element supplied by a widget plugin.
|
Modifier and Type | Method and Description |
---|---|
static EFormFieldTyp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EFormFieldTyp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EFormFieldTyp CHECKBOX
INPUT
form element of type checkbox
that has two states, checked and not
checked.public static final EFormFieldTyp SELECT
SELECT
form element with several options from which one can be selected.public static final EFormFieldTyp TEXTAREA
TEXTAREA
form element for textual input that support multiple lines.public static final EFormFieldTyp TEXTFIELD
INPUT
form element of type text
that supports only a single line of text.public static final EFormFieldTyp UPLOAD
UPLOAD
form element of type file
that can be used to upload file from the
file system.public static final EFormFieldTyp WIDGET
public static final EFormFieldTyp UNKNOWN
public static EFormFieldTyp[] values()
for (EFormFieldTyp c : EFormFieldTyp.values()) System.out.println(c);
public static EFormFieldTyp valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2021 XIMA MEDIA GmbH. All rights reserved.