Enum Class PDFVTMode

java.lang.Object
java.lang.Enum<PDFVTMode>
org.apache.fop.pdf.PDFVTMode
All Implemented Interfaces:
Serializable, Comparable<PDFVTMode>, Constable

public enum PDFVTMode extends Enum<PDFVTMode>
  • Enum Constant Details

    • DISABLED

      public static final PDFVTMode DISABLED
    • PDFVT_1

      public static final PDFVTMode PDFVT_1
  • Field Details

  • Constructor Details

    • PDFVTMode

      private PDFVTMode(String s)
  • Method Details

    • values

      public static PDFVTMode[] 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 PDFVTMode 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
    • getValueOf

      public static PDFVTMode getValueOf(String s)
      Returns the mode enum object given a String.
      Parameters:
      s - the string
      Returns:
      the PDFVTMode enum object (DISABLED will be returned if no match is found)