public abstract static class Iterators.FilterIterator<T> extends Object implements Iterator<T>
Modifier | Constructor and Description |
---|---|
protected |
FilterIterator(Iterable<? extends T> core) |
protected |
FilterIterator(Iterator<? extends T> core) |
Modifier and Type | Method and Description |
---|---|
protected abstract boolean |
filter(T t)
Filter out items in the original collection.
|
boolean |
hasNext() |
T |
next() |
void |
remove() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEachRemaining
protected abstract boolean filter(T t)
Copyright © 2004–2021. All rights reserved.