Package com.hellosign.openapi.model
Enum TemplateResponseDocumentFormField.TypeEnum
- java.lang.Object
-
- java.lang.Enum<TemplateResponseDocumentFormField.TypeEnum>
-
- com.hellosign.openapi.model.TemplateResponseDocumentFormField.TypeEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TemplateResponseDocumentFormField.TypeEnum>
- Enclosing class:
- TemplateResponseDocumentFormField
public static enum TemplateResponseDocumentFormField.TypeEnum extends java.lang.Enum<TemplateResponseDocumentFormField.TypeEnum>
The type of this form field. See [field types](/api/reference/constants/#field-types).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHECKBOXCHECKBOX_MERGEDATE_SIGNEDDROPDOWNHYPERLINKINITIALSRADIOSIGNATURETEXTTEXT_MERGE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TemplateResponseDocumentFormField.TypeEnumfromValue(java.lang.String value)java.lang.StringgetValue()java.lang.StringtoString()static TemplateResponseDocumentFormField.TypeEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TemplateResponseDocumentFormField.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHECKBOX
public static final TemplateResponseDocumentFormField.TypeEnum CHECKBOX
-
CHECKBOX_MERGE
public static final TemplateResponseDocumentFormField.TypeEnum CHECKBOX_MERGE
-
DATE_SIGNED
public static final TemplateResponseDocumentFormField.TypeEnum DATE_SIGNED
-
DROPDOWN
public static final TemplateResponseDocumentFormField.TypeEnum DROPDOWN
-
HYPERLINK
public static final TemplateResponseDocumentFormField.TypeEnum HYPERLINK
-
INITIALS
public static final TemplateResponseDocumentFormField.TypeEnum INITIALS
-
SIGNATURE
public static final TemplateResponseDocumentFormField.TypeEnum SIGNATURE
-
RADIO
public static final TemplateResponseDocumentFormField.TypeEnum RADIO
-
TEXT
public static final TemplateResponseDocumentFormField.TypeEnum TEXT
-
TEXT_MERGE
public static final TemplateResponseDocumentFormField.TypeEnum TEXT_MERGE
-
-
Method Detail
-
values
public static TemplateResponseDocumentFormField.TypeEnum[] 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 (TemplateResponseDocumentFormField.TypeEnum c : TemplateResponseDocumentFormField.TypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TemplateResponseDocumentFormField.TypeEnum 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
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<TemplateResponseDocumentFormField.TypeEnum>
-
fromValue
public static TemplateResponseDocumentFormField.TypeEnum fromValue(java.lang.String value)
-
-