public enum PdfCompliance extends Enum<PdfCompliance>
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 |
|---|---|
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 Pdf15
The output file will be PDF 1.5 compliant.
public static final PdfCompliance PdfA1a
The output file will be PDF/A-1a compliant.
public static final PdfCompliance PdfA1b
The output file will be PDF/A-1b compliant.
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 (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.