public interface Form
Provides access to form data available in a PDF document. Currently, the only
implementation of this interface is AcroForm
,
which represents form data held in an interactive 'AcroForm' embedded in some PDF
documents.
Conceptually, Form
objects are collections of key/value pairs,
represented by FormField
objects.
Modifier and Type | Method and Description |
---|---|
FormField |
getField(java.lang.String fieldName)
Returns the FormField held by this form with the given name.
|
java.util.Enumeration |
getFieldNames()
Returns an
Enumeration of the field names of all of the fields held by this form. |
java.util.Iterator |
iterator()
Returns an Iterator that iterates over all of the
FormField instances held by this Form. |
FormField getField(java.lang.String fieldName)
FormField
instances is implementation-dependant.java.util.Enumeration getFieldNames()
Enumeration
of the field names of all of the fields held by this form.
Such field names are of the same type used by the Form's getField(String)
implementation.java.util.Iterator iterator()
FormField
instances held by this Form.