public enum FormType extends Enum<FormType>
Enumeration of possible types of Acro Form.
| Enum Constant and Description |
|---|
Dynamic
Dynamic XFA form.
|
Standard
Standard AcroForm.
|
Static
Static XFA form.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static FormType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormType Standard
Standard AcroForm.
public static final FormType Static
Static XFA form.
public static final FormType Dynamic
Dynamic XFA form.
public static FormType[] values()
for (FormType c : FormType.values()) System.out.println(c);
public static FormType 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 int getValue()
Copyright © 2025 Aspose. All Rights Reserved.