Package com.docusign.webforms.model
Enum WebFormAdmType
- java.lang.Object
-
- java.lang.Enum<WebFormAdmType>
-
- com.docusign.webforms.model.WebFormAdmType
-
- All Implemented Interfaces:
Serializable,Comparable<WebFormAdmType>
public enum WebFormAdmType extends Enum<WebFormAdmType>
Type used at ADM model as ComponentType decorator. \"String\", \"Boolean\", \"Double\", \"DateTime\", ArrayOfString\" are deprecated.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARRAYOFSTRINGBOOLEANCHECKBOXGROUPDATEDATETIMEDOUBLEEMAILNUMBERRADIOBUTTONGROUPSELECTSTRINGTEXTBOX
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WebFormAdmTypefromValue(String value)StringgetValue()StringtoString()static WebFormAdmTypevalueOf(String name)Returns the enum constant of this type with the specified name.static WebFormAdmType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRING
public static final WebFormAdmType STRING
-
BOOLEAN
public static final WebFormAdmType BOOLEAN
-
DOUBLE
public static final WebFormAdmType DOUBLE
-
DATETIME
public static final WebFormAdmType DATETIME
-
ARRAYOFSTRING
public static final WebFormAdmType ARRAYOFSTRING
-
CHECKBOXGROUP
public static final WebFormAdmType CHECKBOXGROUP
-
DATE
public static final WebFormAdmType DATE
-
EMAIL
public static final WebFormAdmType EMAIL
-
NUMBER
public static final WebFormAdmType NUMBER
-
RADIOBUTTONGROUP
public static final WebFormAdmType RADIOBUTTONGROUP
-
SELECT
public static final WebFormAdmType SELECT
-
TEXTBOX
public static final WebFormAdmType TEXTBOX
-
-
Method Detail
-
values
public static WebFormAdmType[] 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 (WebFormAdmType c : WebFormAdmType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebFormAdmType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<WebFormAdmType>
-
fromValue
public static WebFormAdmType fromValue(String value)
-
-