Uses of Class
info.aduna.iteration.IterationWrapper

Packages that use IterationWrapper
info.aduna.collections.iterators   
info.aduna.iteration   
 

Uses of IterationWrapper in info.aduna.collections.iterators
 

Subclasses of IterationWrapper in info.aduna.collections.iterators
 class DistinctIterator<E>
          An Iterator that filters any duplicate elements from an underlying iterator.
 class FilterIterator<E>
          A CloseableIterator that wraps another iterator, applying a filter on the objects that are returned.
 class IntersectIterator<E>
          An iterator that returns the intersection of the results of two iterators.
 class IteratorWrapper<E>
          Abstract superclass for iterators that wrap another iterator.
 class LimitIterator<E>
          An iterator that limits the amount of elements that it returns from an underlying iterator to a fixed amount.
 class LockingIterator<E>
          An iterator that holds on to a lock until the iterator is closed.
 class MinusIterator<E>
          An iterator that returns the results of an iterator (the left argument) minus the results of another iterator (the right argument).
 class OffsetIterator<E>
          An iterator that skips the first offset elements from an underlying iterator.
 

Uses of IterationWrapper in info.aduna.iteration
 

Subclasses of IterationWrapper in info.aduna.iteration
 class DistinctIteration<E,X extends Exception>
          An Iteration that filters any duplicate elements from an underlying iterator.
 class FilterIteration<E,X extends Exception>
          A CloseableIteration that wraps another Iteration, applying a filter on the objects that are returned.
 class IntersectIteration<E,X extends Exception>
          An Iteration that returns the intersection of the results of two Iterations.
 class LimitIteration<E,X extends Exception>
          An Iteration that limits the amount of elements that it returns from an underlying Iteration to a fixed amount.
 class LockingIteration<E,X extends Exception>
          An Iteration that holds on to a lock until the Iteration is closed.
 class MinusIteration<E,X extends Exception>
          An Iteration that returns the results of an Iteration (the left argument) minus the results of another Iteration (the right argument).
 class OffsetIteration<E,X extends Exception>
          An Iteration that skips the first offset elements from an underlying Iteration.
 



Copyright © 1997-2008 Aduna. All Rights Reserved.