Package com.hellosign.openapi.model
Enum SignatureRequestResponseDataTypeEnum
- java.lang.Object
-
- java.lang.Enum<SignatureRequestResponseDataTypeEnum>
-
- com.hellosign.openapi.model.SignatureRequestResponseDataTypeEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SignatureRequestResponseDataTypeEnum>
public enum SignatureRequestResponseDataTypeEnum extends java.lang.Enum<SignatureRequestResponseDataTypeEnum>
Gets or Sets SignatureRequestResponseDataTypeEnum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHECKBOXCHECKBOX_MERGEDATE_SIGNEDDROPDOWNINITIALSRADIOSIGNATURETEXTTEXT_MERGE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SignatureRequestResponseDataTypeEnumfromValue(java.lang.String value)java.lang.StringgetValue()java.lang.StringtoString()static SignatureRequestResponseDataTypeEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SignatureRequestResponseDataTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEXT
public static final SignatureRequestResponseDataTypeEnum TEXT
-
CHECKBOX
public static final SignatureRequestResponseDataTypeEnum CHECKBOX
-
DATE_SIGNED
public static final SignatureRequestResponseDataTypeEnum DATE_SIGNED
-
DROPDOWN
public static final SignatureRequestResponseDataTypeEnum DROPDOWN
-
INITIALS
public static final SignatureRequestResponseDataTypeEnum INITIALS
-
RADIO
public static final SignatureRequestResponseDataTypeEnum RADIO
-
SIGNATURE
public static final SignatureRequestResponseDataTypeEnum SIGNATURE
-
TEXT_MERGE
public static final SignatureRequestResponseDataTypeEnum TEXT_MERGE
-
CHECKBOX_MERGE
public static final SignatureRequestResponseDataTypeEnum CHECKBOX_MERGE
-
-
Method Detail
-
values
public static SignatureRequestResponseDataTypeEnum[] 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 (SignatureRequestResponseDataTypeEnum c : SignatureRequestResponseDataTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SignatureRequestResponseDataTypeEnum 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<SignatureRequestResponseDataTypeEnum>
-
fromValue
public static SignatureRequestResponseDataTypeEnum fromValue(java.lang.String value)
-
-