public enum PdfCompliance extends Enum<PdfCompliance>
Enum Constant and Description |
---|
NONE
Not specified (default).
|
PDF15
PDF 1.5 compliance.
|
PDFA
PDF-A compliance.
|
Modifier and Type | Method and Description |
---|---|
static PdfCompliance |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PdfCompliance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PdfCompliance PDFA
public static final PdfCompliance PDF15
public static final PdfCompliance NONE
public static PdfCompliance[] values()
for (PdfCompliance c : PdfCompliance.values()) System.out.println(c);
public static PdfCompliance valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2016 SAPERION AG. All rights reserved.