Enum ETargetPageFormat
- All Implemented Interfaces:
Serializable, Comparable<ETargetPageFormat>
Some page formats that might be passed as conversion parameters (see the particular converter implementation for
supported values).
- Since:
- 8.3.0
- Author:
- XIMA MEDIA GmbH
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA3 landscapeA3 portraitA4 landscapeA4 portraitA5 landscapeA5 portraitUse the default output page format (converter dependent, e.g. for Word or PDF documents or images this is the format of the source document, for plaintext it would beA4_PORTRAIT).US Legal landscapeUS Legal portraitUS Letter landscapeUS Letter portraitTabloid landscapeTabloid portrait -
Method Summary
Modifier and TypeMethodDescriptionbooleanin(ETargetPageFormat... elements) static ETargetPageFormatReturns the enum constant of this type with the specified name.static ETargetPageFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
AUTO
Use the default output page format (converter dependent, e.g. for Word or PDF documents or images this is the format of the source document, for plaintext it would beA4_PORTRAIT). -
A3_PORTRAIT
A3 portrait -
A3_LANDSCAPE
A3 landscape -
A4_PORTRAIT
A4 portrait -
A4_LANDSCAPE
A4 landscape -
A5_PORTRAIT
A5 portrait -
A5_LANDSCAPE
A5 landscape -
LEGAL_PORTRAIT
US Legal portrait -
LEGAL_LANDSCAPE
US Legal landscape -
LETTER_PORTRAIT
US Letter portrait -
LETTER_LANDSCAPE
US Letter landscape -
TABLOID_PORTRAIT
Tabloid portrait -
TABLOID_LANDSCAPE
Tabloid landscape
-
-
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
-
in
- Parameters:
elements- the enum elements for the 'in' check- Returns:
- true if
thisis contained in the provided enum elements, false otherwise.
-