public enum PdfComplianceLevel extends Enum<PdfComplianceLevel>
Represents a list of supported PDF compliance levels.
| Enum Constant and Description |
|---|
Auto
The output file will comply with the PDF/A-1b standard by default.
|
PdfA1a
The output file will comply with the PDF/A-1a standard.
|
| Modifier and Type | Method and Description |
|---|---|
static PdfComplianceLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PdfComplianceLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PdfComplianceLevel Auto
The output file will comply with the PDF/A-1b standard by default.
public static final PdfComplianceLevel PdfA1a
The output file will comply with the PDF/A-1a standard.
public static PdfComplianceLevel 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 static PdfComplianceLevel[] values()
for (PdfComplianceLevel c : PdfComplianceLevel.values()) System.out.println(c);
Copyright © 2025. All rights reserved.