Package com.pdfgate

Enum Class EnvelopeDocumentStatus

java.lang.Object
java.lang.Enum<EnvelopeDocumentStatus>
com.pdfgate.EnvelopeDocumentStatus
All Implemented Interfaces:
Serializable, Comparable<EnvelopeDocumentStatus>, Constable

public enum EnvelopeDocumentStatus extends Enum<EnvelopeDocumentStatus>
Envelope document status values returned by the API.
  • Enum Constant Details

    • PENDING

      @SerializedName("pending") public static final EnvelopeDocumentStatus PENDING
      The document is pending.
    • SENT_FOR_SIGNING

      @SerializedName("sent_for_signing") public static final EnvelopeDocumentStatus SENT_FOR_SIGNING
      The document has been sent for signing.
    • SIGNING_IN_PROGRESS

      @SerializedName("signing_in_progress") public static final EnvelopeDocumentStatus SIGNING_IN_PROGRESS
      The document is currently being signed.
    • SIGNING_FAILED

      @SerializedName("signing_failed") public static final EnvelopeDocumentStatus SIGNING_FAILED
      Signing failed for the document.
    • COMPLETED

      @SerializedName("completed") public static final EnvelopeDocumentStatus COMPLETED
      The document signing flow is complete.
  • Method Details

    • values

      public static EnvelopeDocumentStatus[] 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

      public static EnvelopeDocumentStatus valueOf(String name)
      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 name
      NullPointerException - if the argument is null