public enum Conformance extends java.lang.Enum<Conformance>
Enum Constant and Description |
---|
PDF_A1_A
PDF/A-1a, ISO 19005-1, level A conformance
|
PDF_A1_B
PDF/A-1b, ISO 19005-1, level B conformance
|
PDF_A2_A
PDF/A-2a, ISO 19005-2, level A conformance
|
PDF_A2_B
PDF/A-2b, ISO 19005-2, level B conformance
|
PDF_A2_U
PDF/A-2u, ISO 19005-2, level U conformance
|
PDF_A3_A
PDF/A-3a, ISO 19005-3, level A conformance
|
PDF_A3_B
PDF/A-3b, ISO 19005-3, level B conformance
|
PDF_A3_U
PDF/A-3u, ISO 19005-3, level U conformance
|
PDF10
PDF Version 1.0
|
PDF11
PDF Version 1.1
|
PDF12
PDF Version 1.2
|
PDF13
PDF Version 1.3
|
PDF14
PDF Version 1.4 (corresponds to Acrobat 5)
|
PDF15
PDF Version 1.5
|
PDF16
PDF Version 1.6 (corresponds to Acrobat 7)
|
PDF17
PDF Version 1.7, ISO 32000-1
|
PDF20
PDF Version 2.0, ISO 32000-2
|
Modifier and Type | Method and Description |
---|---|
static Conformance |
fromValue(int value) |
int |
getValue() |
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.
|
public static final Conformance PDF10
public static final Conformance PDF11
public static final Conformance PDF12
public static final Conformance PDF13
public static final Conformance PDF14
public static final Conformance PDF15
public static final Conformance PDF16
public static final Conformance PDF17
public static final Conformance PDF20
public static final Conformance PDF_A1_B
public static final Conformance PDF_A1_A
public static final Conformance PDF_A2_B
public static final Conformance PDF_A2_U
public static final Conformance PDF_A2_A
public static final Conformance PDF_A3_B
public static final Conformance PDF_A3_U
public static final Conformance PDF_A3_A
public static Conformance[] values()
for (Conformance c : Conformance.values()) System.out.println(c);
public static Conformance valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static Conformance fromValue(int value)
public int getValue()