T
public class FilterIterator<T> extends Object implements Iterator<T>
A filtering iterator wraps a source iterator an filter out some of its elements based on a predicate.
FilterIterator(Iterator<T> iter, Mapping<T,Boolean> ignore)
boolean
hasNext()
next()
void
remove()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public FilterIterator(Iterator<T> iter, Mapping<T,Boolean> ignore)
public boolean hasNext()
hasNext
Iterator<T>
public T next()
next
public void remove()
remove
Copyright © 2015. All rights reserved.