public enum PdfComplianceEnum extends Enum<PdfComplianceEnum>
Specifies the PDF compliance level to output file.
Enum Constant and Description |
---|
Pdf15
The output file will be PDF 1.5 compliant.
|
PdfA1a
The output file will be PDF/A-1a compliant.
|
PdfA1b
The output file will be PDF/A-1b compliant.
|
Modifier and Type | Method and Description |
---|---|
int |
getType()
Gets the value that represents the type of the enum.
|
static PdfComplianceEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PdfComplianceEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PdfComplianceEnum Pdf15
The output file will be PDF 1.5 compliant.
public static final PdfComplianceEnum PdfA1a
The output file will be PDF/A-1a compliant.
public static final PdfComplianceEnum PdfA1b
The output file will be PDF/A-1b compliant.
public static PdfComplianceEnum[] values()
for (PdfComplianceEnum c : PdfComplianceEnum.values()) System.out.println(c);
public static PdfComplianceEnum 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 nullpublic int getType()