Enum FieldType
- java.lang.Object
-
- java.lang.Enum<FieldType>
-
- com.adobe.cq.forms.core.components.models.form.FieldType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUTTONCAPTCHACHECKBOXCHECKBOX_GROUPCOLORDATE_INPUTDROP_DOWNEMAILFILE_INPUTFORMHIDDENIMAGEMULTILINE_INPUTNUMBER_INPUTPANELPASSWORDPLAIN_TEXTRADIO_GROUPRANGETELEPHONETEXT_INPUTURL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FieldTypefromString(java.lang.String value)Given aStringvalue, this method returns the enum's value that corresponds to the provided string representation.java.lang.StringgetValue()Returns the string value of this enum constant.java.lang.StringtoString()static FieldTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FieldType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEXT_INPUT
public static final FieldType TEXT_INPUT
-
EMAIL
public static final FieldType EMAIL
-
CAPTCHA
public static final FieldType CAPTCHA
-
MULTILINE_INPUT
public static final FieldType MULTILINE_INPUT
-
NUMBER_INPUT
public static final FieldType NUMBER_INPUT
-
DATE_INPUT
public static final FieldType DATE_INPUT
-
FILE_INPUT
public static final FieldType FILE_INPUT
-
DROP_DOWN
public static final FieldType DROP_DOWN
-
RADIO_GROUP
public static final FieldType RADIO_GROUP
-
PLAIN_TEXT
public static final FieldType PLAIN_TEXT
-
CHECKBOX
public static final FieldType CHECKBOX
-
BUTTON
public static final FieldType BUTTON
-
PANEL
public static final FieldType PANEL
-
FORM
public static final FieldType FORM
-
CHECKBOX_GROUP
public static final FieldType CHECKBOX_GROUP
-
IMAGE
public static final FieldType IMAGE
-
TELEPHONE
public static final FieldType TELEPHONE
-
PASSWORD
public static final FieldType PASSWORD
-
RANGE
public static final FieldType RANGE
-
COLOR
public static final FieldType COLOR
-
URL
public static final FieldType URL
-
HIDDEN
public static final FieldType HIDDEN
-
-
Method Detail
-
values
public static FieldType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FieldType c : FieldType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FieldType valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
fromString
public static FieldType fromString(java.lang.String value)
Given aStringvalue, this method returns the enum's value that corresponds to the provided string representation. If no representation is found,TEXT_INPUTwill be returned.- Parameters:
value- the string representation for which an enum value should be returned- Returns:
- the corresponding enum value, if one was found, or
TEXT_INPUT - Since:
- com.adobe.cq.forms.core.components.models.form 0.0.1
-
getValue
public java.lang.String getValue()
Returns the string value of this enum constant.- Returns:
- the string value of this enum constant
- Since:
- com.adobe.cq.forms.core.components.models.form 0.0.1
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<FieldType>
-
-