Package com.itextpdf.text.pdf
Enum PdfAConformanceLevel
- java.lang.Object
-
- java.lang.Enum<PdfAConformanceLevel>
-
- com.itextpdf.text.pdf.PdfAConformanceLevel
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PdfAConformanceLevel>
public enum PdfAConformanceLevel extends java.lang.Enum<PdfAConformanceLevel>
Enumeration of all the PDF/A conformance levels.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PDF_A_1A
PDF/A-1aPDF_A_1B
PDF/A-1bPDF_A_2A
PDF/A-2aPDF_A_2B
PDF/A-2bPDF_A_2U
PDF/A-2uPDF_A_3A
PDF/A-3aPDF_A_3B
PDF/A-3bPDF_A_3U
PDF/A-3uZUGFeRD
ZUGFeRDZUGFeRDBasic
ZUGFeRDBasic VersionZUGFeRDComfort
ZUGFeRDComfort VersionZUGFeRDExtended
ZUGFeRDExtended Version
-
Constructor Summary
Constructors Modifier Constructor Description private
PdfAConformanceLevel()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PdfAConformanceLevel
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PdfAConformanceLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PDF_A_1A
public static final PdfAConformanceLevel PDF_A_1A
PDF/A-1a
-
PDF_A_1B
public static final PdfAConformanceLevel PDF_A_1B
PDF/A-1b
-
PDF_A_2A
public static final PdfAConformanceLevel PDF_A_2A
PDF/A-2a
-
PDF_A_2B
public static final PdfAConformanceLevel PDF_A_2B
PDF/A-2b
-
PDF_A_2U
public static final PdfAConformanceLevel PDF_A_2U
PDF/A-2u
-
PDF_A_3A
public static final PdfAConformanceLevel PDF_A_3A
PDF/A-3a
-
PDF_A_3B
public static final PdfAConformanceLevel PDF_A_3B
PDF/A-3b
-
PDF_A_3U
public static final PdfAConformanceLevel PDF_A_3U
PDF/A-3u
-
ZUGFeRD
public static final PdfAConformanceLevel ZUGFeRD
ZUGFeRD
-
ZUGFeRDBasic
public static final PdfAConformanceLevel ZUGFeRDBasic
ZUGFeRDBasic Version
-
ZUGFeRDComfort
public static final PdfAConformanceLevel ZUGFeRDComfort
ZUGFeRDComfort Version
-
ZUGFeRDExtended
public static final PdfAConformanceLevel ZUGFeRDExtended
ZUGFeRDExtended Version
-
-
Method Detail
-
values
public static PdfAConformanceLevel[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PdfAConformanceLevel c : PdfAConformanceLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PdfAConformanceLevel valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-