Class FilterIterator<T>

  • Type Parameters:
    T - The element type of the iterator
    All Implemented Interfaces:
    Iterator<T>

    public abstract class FilterIterator<T>
    extends Object
    implements Iterator<T>
    An Iterator that retrieves its elements from a delegate Iterator. The default implementation simply passes all method invocations to the delegate.