Enum ElementType

java.lang.Object
java.lang.Enum<ElementType>
com.dynamicpdf.api.elements.ElementType
All Implemented Interfaces:
Serializable, Comparable<ElementType>, java.lang.constant.Constable

public enum ElementType extends Enum<ElementType>
Represents page element type.
  • Enum Constant Details

    • IMAGE

      public static final ElementType IMAGE
      Image element.
    • TEXT

      public static final ElementType TEXT
      Text element.
    • PAGENUMBERING

      public static final ElementType PAGENUMBERING
      Page numbering element.
    • CODE128BARCODE

      public static final ElementType CODE128BARCODE
      Code 128 barcode element.
    • CODE39BARCODE

      public static final ElementType CODE39BARCODE
      Code 39 barcode element.
    • CODE25BARCODE

      public static final ElementType CODE25BARCODE
      Code 2 of 5 barcode element.
    • CODE93BARCODE

      public static final ElementType CODE93BARCODE
      Code 93 barcode element.
    • CODE11BARCODE

      public static final ElementType CODE11BARCODE
      Code 11 barcode element.
    • GS1DATABARBARCODE

      public static final ElementType GS1DATABARBARCODE
      GS1 databar barcode element.
    • IATA25BARCODE

      public static final ElementType IATA25BARCODE
      IATA 25 barcode element.
    • MSIBARCODE

      public static final ElementType MSIBARCODE
      MSI barcode element.
    • STACKEDGS1DATABARBARCODE

      public static final ElementType STACKEDGS1DATABARBARCODE
      Stacked GS1 databar barcode element.
    • AZTECBARCODE

      public static final ElementType AZTECBARCODE
      Aztec barcode element.
    • QRCODE

      public static final ElementType QRCODE
      QR Code barcode element.
    • PDF417BARCODE

      public static final ElementType PDF417BARCODE
      PDF417 barcode element.
    • DATAMATRIXBARCODE

      public static final ElementType DATAMATRIXBARCODE
      Data Matrix barcode element.
    • RECTANGLE

      public static final ElementType RECTANGLE
      Rectangle element.
    • LINE

      public static final ElementType LINE
      Line element.
  • Method Details

    • values

      public static ElementType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ElementType valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null