Package com.pdfgate

Enum Class EnvelopeStatus

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

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

    • CREATED

      @SerializedName("created") public static final EnvelopeStatus CREATED
      The envelope has been created.
    • IN_PROGRESS

      @SerializedName("in_progress") public static final EnvelopeStatus IN_PROGRESS
      The envelope is currently being processed.
    • COMPLETED

      @SerializedName("completed") public static final EnvelopeStatus COMPLETED
      The envelope has been completed.
    • EXPIRED

      @SerializedName("expired") public static final EnvelopeStatus EXPIRED
      The envelope has expired.
  • Method Details

    • values

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