Package com.pdfgate

Enum Class DocumentFieldType

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

public enum DocumentFieldType extends Enum<DocumentFieldType>
Envelope field type values returned by the API.
  • Enum Constant Details

    • SIGNATURE

      @SerializedName("signature") public static final DocumentFieldType SIGNATURE
      Signature field.
    • TEXT

      @SerializedName("text") public static final DocumentFieldType TEXT
      Single-line text field.
    • NUMBER

      @SerializedName("number") public static final DocumentFieldType NUMBER
      Numeric field.
    • TEXT_AREA

      @SerializedName("textarea") public static final DocumentFieldType TEXT_AREA
      Multi-line text field.
    • DATE

      @SerializedName("date") public static final DocumentFieldType DATE
      Date field.
    • TIME

      @SerializedName("time") public static final DocumentFieldType TIME
      Time field.
    • DATETIME

      @SerializedName("datetime") public static final DocumentFieldType DATETIME
      Date-time field.
    • CHECKBOX

      @SerializedName("checkbox") public static final DocumentFieldType CHECKBOX
      Checkbox field.
    • RADIO_BUTTON

      @SerializedName("radio") public static final DocumentFieldType RADIO_BUTTON
      Radio button field.
    • SELECT

      @SerializedName("select") public static final DocumentFieldType SELECT
      Select field.
  • Method Details

    • values

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