Enum PDFRendererOption

java.lang.Object
java.lang.Enum<PDFRendererOption>
org.apache.fop.render.pdf.PDFRendererOption
All Implemented Interfaces:
Serializable, Comparable<PDFRendererOption>, java.lang.constant.Constable, RendererConfigOption

public enum PDFRendererOption extends Enum<PDFRendererOption> implements RendererConfigOption
  • Enum Constant Details

    • FILTER_LIST

      public static final PDFRendererOption FILTER_LIST
    • PDF_A_MODE

      public static final PDFRendererOption PDF_A_MODE
      Rendering Options key for the PDF/A mode, default: PDFAMode.DISABLED
    • PDF_UA_MODE

      public static final PDFRendererOption PDF_UA_MODE
    • PDF_X_MODE

      public static final PDFRendererOption PDF_X_MODE
      Rendering Options key for the PDF/X mode, default: PDFXMode.DISABLED
    • PDF_VT_MODE

      public static final PDFRendererOption PDF_VT_MODE
      Rendering Options key for the PDF/VT mode, default: PDFVTMode.DISABLED
    • VERSION

      public static final PDFRendererOption VERSION
      PDF version entry: specify the version of the PDF document created, datatype: String
    • DISABLE_SRGB_COLORSPACE

      public static final PDFRendererOption DISABLE_SRGB_COLORSPACE
      Rendering Options key for disabling the sRGB color space (only possible if no PDF/A or PDF/X profile is active), default: false
    • MERGE_FONTS

      public static final PDFRendererOption MERGE_FONTS
    • LINEARIZATION

      public static final PDFRendererOption LINEARIZATION
    • FORM_XOBJECT

      public static final PDFRendererOption FORM_XOBJECT
    • OUTPUT_PROFILE

      public static final PDFRendererOption OUTPUT_PROFILE
      Rendering Options key for the ICC profile for the output intent.
  • Method Details

    • values

      public static PDFRendererOption[] 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 PDFRendererOption 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
    • getName

      public String getName()
      Description copied from interface: RendererConfigOption
      The name of the option.
      Specified by:
      getName in interface RendererConfigOption
    • getDefaultValue

      public Object getDefaultValue()
      Specified by:
      getDefaultValue in interface RendererConfigOption
    • parse

      public Object parse(Object object)