Details
Description
I would like to submit my DynamicIterator class for inclusion in Commons Collections.
Description from JavaDoc:
Iterates over the elements of an inner iterator provided by nextIterator() Once the inner iterator's hasNext() method returns false, nextIterator() will be called to obtain another iterator, and so on until nextIterator() returns null.
The use case I had in mind for this class was the paged web service. A web service returns a list of results, which are paginated. Once a page's results are exhausted, nextIterator() can go fetch the next page for iteration.
This class, and accompanying test class are my original works. I have released them into the public domain, feel free to use the appropriate ASF license.