Enum SignatureStatus
- java.lang.Object
-
- java.lang.Enum<SignatureStatus>
-
- com.hellosign.sdk.resource.support.types.SignatureStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SignatureStatus>
public enum SignatureStatus extends java.lang.Enum<SignatureStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description awaiting_signaturedeclinederror_component_positionerror_fileerror_text_tagerror_unknownon_holdsignedsuccess
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SignatureStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SignatureStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
success
public static final SignatureStatus success
-
on_hold
public static final SignatureStatus on_hold
-
signed
public static final SignatureStatus signed
-
awaiting_signature
public static final SignatureStatus awaiting_signature
-
declined
public static final SignatureStatus declined
-
error_unknown
public static final SignatureStatus error_unknown
-
error_file
public static final SignatureStatus error_file
-
error_component_position
public static final SignatureStatus error_component_position
-
error_text_tag
public static final SignatureStatus error_text_tag
-
-
Method Detail
-
values
public static SignatureStatus[] 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 (SignatureStatus c : SignatureStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SignatureStatus 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
-
-