public class

FDFFieldIterator

extends PDFNetIterator<T>
java.lang.Object
   ↳ com.pdftron.common.PDFNetIterator<T>
     ↳ com.pdftron.fdf.FDFFieldIterator

Class Overview

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(); }

Summary

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.util.Iterator

Public Methods

public Object clone ()

public FDFField next ()

Advances the iterator to the next element of the collection.

Returns
  • the next object