fop 2.2

org.apache.fop.render.pdf
Enum PDFRendererOption

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

public enum PDFRendererOption
extends java.lang.Enum<PDFRendererOption>
implements RendererConfigOption


Enum Constant Summary
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
FILTER_LIST
           
LINEARIZATION
           
MERGE_FONTS
           
OUTPUT_PROFILE
          Rendering Options key for the ICC profile for the output intent.
PDF_A_MODE
          Rendering Options key for the PDF/A mode, default: PDFAMode.DISABLED
PDF_UA_MODE
           
PDF_VT_MODE
          Rendering Options key for the PDF/VT mode, default: PDFVTMode.DISABLED
PDF_X_MODE
          Rendering Options key for the PDF/X mode, default: PDFXMode.DISABLED
VERSION
          PDF version entry: specify the version of the PDF document created, datatype: String
 
Method Summary
 java.lang.Object getDefaultValue()
           
 java.lang.String getName()
          The name of the option.
 java.lang.Object parse(java.lang.Object object)
           
static PDFRendererOption valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PDFRendererOption[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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

OUTPUT_PROFILE

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

Method Detail

values

public static PDFRendererOption[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (PDFRendererOption c : PDFRendererOption.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

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

getName

public java.lang.String getName()
Description copied from interface: RendererConfigOption
The name of the option.

Specified by:
getName in interface RendererConfigOption

getDefaultValue

public java.lang.Object getDefaultValue()

parse

public java.lang.Object parse(java.lang.Object object)

fop 2.2

Copyright 1999-2017 The Apache Software Foundation. All Rights Reserved.