java.lang.Object | ||
↳ | com.pdftron.common.PDFNetIterator<T> | |
↳ | com.pdftron.fdf.FDFFieldIterator |
FDFFieldIterator is an iterator type used to traverse interactive form fields
in a FDF document. A FDFFieldIterator points to FDF.FDFField nodes or to the 'null'
FDFField node. A sample use case:
for(FDFFieldIterator itr = fdf_doc.getFieldIterator(); itr.hasNext(); itr.next()) {
Field name: itr.current().getName();
Field partial name: itr.current().getPartialName();
}
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Object | clone() | ||||||||||
FDFField |
next()
Advances the iterator to the next element of the collection.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.pdftron.common.PDFNetIterator
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
java.lang.AutoCloseable
| |||||||||||
From interface
java.util.Iterator
|
Advances the iterator to the next element of the collection.