public abstract static class Iterators.Filter<T>
extends java.lang.Object
| Modifier | Constructor | Description |
|---|---|---|
protected |
Filter(java.util.Iterator<? extends T> core) |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
hasNext() |
|
protected abstract boolean |
matches(T value) |
Return true to retain the value.
|
T |
next() |
|
void |
remove() |
protected Filter(java.util.Iterator<? extends T> core)
Copyright © 2017 Oracle Corporation. All rights reserved.