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