Package com.pdftools.toolbox.pdf
Enum Conformance
- java.lang.Object
-
- java.lang.Enum<Conformance>
-
- com.pdftools.toolbox.pdf.Conformance
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Conformance>
public enum Conformance extends java.lang.Enum<Conformance>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PDF_A1_A
PDF/A-1a, ISO 19005-1, level A conformancePDF_A1_B
PDF/A-1b, ISO 19005-1, level B conformancePDF_A2_A
PDF/A-2a, ISO 19005-2, level A conformancePDF_A2_B
PDF/A-2b, ISO 19005-2, level B conformancePDF_A2_U
PDF/A-2u, ISO 19005-2, level U conformancePDF_A3_A
PDF/A-3a, ISO 19005-3, level A conformancePDF_A3_B
PDF/A-3b, ISO 19005-3, level B conformancePDF_A3_U
PDF/A-3u, ISO 19005-3, level U conformancePDF10
PDF Version 1.0PDF11
PDF Version 1.1PDF12
PDF Version 1.2PDF13
PDF Version 1.3PDF14
PDF Version 1.4 (corresponds to Acrobat 5)PDF15
PDF Version 1.5PDF16
PDF Version 1.6 (corresponds to Acrobat 7)PDF17
PDF Version 1.7, ISO 32000-1PDF20
PDF Version 2.0, ISO 32000-2
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Conformance
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Conformance[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PDF10
public static final Conformance PDF10
PDF Version 1.0
-
PDF11
public static final Conformance PDF11
PDF Version 1.1
-
PDF12
public static final Conformance PDF12
PDF Version 1.2
-
PDF13
public static final Conformance PDF13
PDF Version 1.3
-
PDF14
public static final Conformance PDF14
PDF Version 1.4 (corresponds to Acrobat 5)
-
PDF15
public static final Conformance PDF15
PDF Version 1.5
-
PDF16
public static final Conformance PDF16
PDF Version 1.6 (corresponds to Acrobat 7)
-
PDF17
public static final Conformance PDF17
PDF Version 1.7, ISO 32000-1
-
PDF20
public static final Conformance PDF20
PDF Version 2.0, ISO 32000-2
-
PDF_A1_B
public static final Conformance PDF_A1_B
PDF/A-1b, ISO 19005-1, level B conformance
-
PDF_A1_A
public static final Conformance PDF_A1_A
PDF/A-1a, ISO 19005-1, level A conformance
-
PDF_A2_B
public static final Conformance PDF_A2_B
PDF/A-2b, ISO 19005-2, level B conformance
-
PDF_A2_U
public static final Conformance PDF_A2_U
PDF/A-2u, ISO 19005-2, level U conformance
-
PDF_A2_A
public static final Conformance PDF_A2_A
PDF/A-2a, ISO 19005-2, level A conformance
-
PDF_A3_B
public static final Conformance PDF_A3_B
PDF/A-3b, ISO 19005-3, level B conformance
-
PDF_A3_U
public static final Conformance PDF_A3_U
PDF/A-3u, ISO 19005-3, level U conformance
-
PDF_A3_A
public static final Conformance PDF_A3_A
PDF/A-3a, ISO 19005-3, level A conformance
-
-
Method Detail
-
values
public static Conformance[] 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 (Conformance c : Conformance.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Conformance 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
-
-