public enum AcroFormImportType extends java.lang.Enum<AcroFormImportType>
| Enum Constant and Description |
|---|
FDF
FDF (Forms Data Format) representing form field data.
|
XFDF
XFDF (XML Forms Data Format) representing form field data.
|
XML
XML (Extensible Markup Language) representing form field data.
|
| Modifier and Type | Method and Description |
|---|---|
static AcroFormImportType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AcroFormImportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AcroFormImportType XFDF
public static final AcroFormImportType FDF
public static final AcroFormImportType XML
public static AcroFormImportType[] values()
for (AcroFormImportType c : AcroFormImportType.values()) System.out.println(c);
public static AcroFormImportType 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