Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Package org.jdaemon.util.iterator

Class Summary
AggregatingIterator Abstract class for generating aggregate data from a collection
CompoundIterator Takes two iterators and turns them into a single iterator Elements in the enumeration A will be returned until there are none left; After that, elements in the enumeration B will be returned.
EmptyIterator Empty Iterator object
EnumerationIterator  
ExcludeIterator Iterator that will exclude a certain certain object from an Iterator
FilterIterator Iterator that returns subset of values from some other enumeration that match some predicate function (the 'filter')
FunctionIterator Iterator which is the result of applying some function to all elements of some other itereration
Iterators Utility class for various functions that operate on Iterators
MapEntryConverter Iterator that converts data into map entry objects If o is an object returned by the next() method of iterator i, And j = new MapEntryConverter(i), then j.next() will return an object e supporting the Map.Entry interface.
MapEntryConverter.Entry