Package org.apache.fop.pdf
Enum PDFAMode
- All Implemented Interfaces:
Serializable,Comparable<PDFAMode>,java.lang.constant.Constable
Enum class for PDF/A modes.
-
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 TypeMethodDescriptioncharReturns the conformance level for this enum.getName()intgetPart()Returns the part of the specification this enum corresponds to.static PDFAModegetValueOf(String s) Returns the mode enum object given a String.booleanReturnstrueif this enum corresponds to one of the available PDF/A modes.booleanisLevelA()Returnstrueif this enum corresponds to conformance level A.booleanisPart1()Returnstrueif this enum corresponds to PDF/A-1 (ISO 19005-1).booleanisPart2()Returnstrueif this enum corresponds to PDF/A-2 (ISO 19005-2).toString()static PDFAModeReturns the enum constant of this type with the specified name.static PDFAMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DISABLED
PDF/A disabled. -
PDFA_1A
PDF/A-1a enabled. -
PDFA_1B
PDF/A-1b enabled. -
PDFA_2A
PDF/A-2a enabled. -
PDFA_2B
PDF/A-2b enabled. -
PDFA_2U
PDF/A-2u enabled. -
PDFA_3A
-
PDFA_3B
-
PDFA_3U
-
-
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
-
getName
- Returns:
- the name of the enum
-
isEnabled
public boolean isEnabled()Returnstrueif this enum corresponds to one of the available PDF/A modes.- Returns:
trueif this is not DISABLED
-
getPart
public int getPart()Returns the part of the specification this enum corresponds to.- Returns:
- 1 for PDF/A-1 (ISO 19005-1), 2 for PDF/A-2 (ISO 19005-2)
-
isPart1
public boolean isPart1()Returnstrueif this enum corresponds to PDF/A-1 (ISO 19005-1). -
isPart2
public boolean isPart2()Returnstrueif this enum corresponds to PDF/A-2 (ISO 19005-2). -
getConformanceLevel
public char getConformanceLevel()Returns the conformance level for this enum.- Returns:
- 'A', 'B' or 'U'
-
isLevelA
public boolean isLevelA()Returnstrueif this enum corresponds to conformance level A. -
getValueOf
Returns the mode enum object given a String.- Parameters:
s- the string- Returns:
- the PDFAMode enum object (DISABLED will be returned if no match is found)
-
toString
-