public abstract static class Iterators.Filter<T> extends Iterators.ReadOnly<T>
Modifier and Type | Field and Description |
---|---|
private java.util.Iterator<? extends T> |
core |
private T |
next |
Modifier | Constructor and Description |
---|---|
protected |
Filter(java.util.Iterator<? extends T> core) |
Modifier and Type | Method and Description |
---|---|
boolean |
hasNext() |
protected abstract boolean |
matches(T value)
Return true to retain the value.
|
T |
next() |
remove
protected Filter(java.util.Iterator<? extends T> core)