Package org.apache.pdfbox.multipdf
Enum PDFMergerUtility.AcroFormMergeMode
java.lang.Object
java.lang.Enum<PDFMergerUtility.AcroFormMergeMode>
org.apache.pdfbox.multipdf.PDFMergerUtility.AcroFormMergeMode
- All Implemented Interfaces:
Serializable
,Comparable<PDFMergerUtility.AcroFormMergeMode>
,java.lang.constant.Constable
- Enclosing class:
- PDFMergerUtility
public static enum PDFMergerUtility.AcroFormMergeMode
extends Enum<PDFMergerUtility.AcroFormMergeMode>
The mode to use when merging AcroForm between documents:
JOIN_FORM_FIELDS_MODE
fields with the same fully qualified name will be merged into one with the widget annotations of the merged fields becoming part of the same field.
Although the API is finalized processing of different form field types is still in development. Currently only (nested) text fields do work with intermediate nodes being existent.PDFBOX_LEGACY_MODE
fields with the same fully qualified name will be renamed and treated as independent. This mode was used in versions of PDFBox up to 2.x.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static PDFMergerUtility.AcroFormMergeMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
JOIN_FORM_FIELDS_MODE
-
PDFBOX_LEGACY_MODE
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-