Package org.apache.fop.pdf
Enum PDFUAMode
- All Implemented Interfaces:
Serializable
,Comparable<PDFUAMode>
Enum class for PDF/UA modes.
-
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetName()
int
getPart()
static PDFUAMode
getValueOf
(String s) Returns the mode enum object given a String.boolean
Returnstrue
if this enum corresponds to one of the available PDF/A modes.toString()
static PDFUAMode
Returns the enum constant of this type with the specified name.static PDFUAMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DISABLED
PDF/UA disabled. -
PDFUA_1
PDF/UA-1 enabled.
-
-
Field Details
-
name
-
part
private final int part
-
-
Constructor Details
-
PDFUAMode
Constructor to add a new named item.- Parameters:
name
- Name of the item.
-
PDFUAMode
private PDFUAMode(int part)
-
-
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
-
getPart
public int getPart() -
isEnabled
public boolean isEnabled()Returnstrue
if this enum corresponds to one of the available PDF/A modes.- Returns:
true
if this is not DISABLED
-
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
-