Package com.realobjects.pdfreactor
Enum Configuration.OverlayRepeat
- All Implemented Interfaces:
Serializable
,Comparable<Configuration.OverlayRepeat>
,java.lang.constant.Constable
- Enclosing class:
Configuration
An enum containing data for repeating overlays.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAll pages of the shorter document are repeated, to overlay all pages of the longer document.Last page of the shorter document is repeated, to overlay all pages of the longer document.No pages of the shorter document are repeated, leaving some pages of the longer document without overlay.The resulting PDF is trimmed to the number of pages of the shorter document. -
Method Summary
Modifier and TypeMethodDescriptionstatic Configuration.OverlayRepeat
Returns the enum constant of this type with the specified name.static Configuration.OverlayRepeat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
ALL_PAGES
All pages of the shorter document are repeated, to overlay all pages of the longer document.
-
LAST_PAGE
Last page of the shorter document is repeated, to overlay all pages of the longer document.
-
NONE
No pages of the shorter document are repeated, leaving some pages of the longer document without overlay.
-
TRIM
The resulting PDF is trimmed to the number of pages of the shorter document.
-
-
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
-