Package com.pdfgate
Enum Class EnvelopeDocumentStatus
- All Implemented Interfaces:
Serializable,Comparable<EnvelopeDocumentStatus>,Constable
Envelope document status values returned by the API.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe document signing flow is complete.The document is pending.The document has been sent for signing.Signing failed for the document.The document is currently being signed. -
Method Summary
Modifier and TypeMethodDescriptionstatic EnvelopeDocumentStatusReturns the enum constant of this class with the specified name.static EnvelopeDocumentStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PENDING
The document is pending. -
SENT_FOR_SIGNING
The document has been sent for signing. -
SIGNING_IN_PROGRESS
@SerializedName("signing_in_progress") public static final EnvelopeDocumentStatus SIGNING_IN_PROGRESSThe document is currently being signed. -
SIGNING_FAILED
Signing failed for the document. -
COMPLETED
The document signing flow is complete.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-