public enum PDFXConvertType extends java.lang.Enum<PDFXConvertType>
| Enum Constant and Description |
|---|
X1_A
Convert to PDF/X-1a 2001
|
X3
Convert to PDF/X-3 2003
|
X4
Convert to PDF/X-4 2010
|
X6
Convert to PDF/X-6 2020
|
| Modifier and Type | Method and Description |
|---|---|
static PDFXConvertType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PDFXConvertType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PDFXConvertType X1_A
public static final PDFXConvertType X3
public static final PDFXConvertType X4
public static final PDFXConvertType X6
public static PDFXConvertType[] values()
for (PDFXConvertType c : PDFXConvertType.values()) System.out.println(c);
public static PDFXConvertType 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 null