Located in compilation unit of javax.
Iterators
with a filter function.
This provides an iterator for a subset without duplication.
Modifier and Type | Field and Description |
---|---|
private ServiceRegistry. | |
private Iterator | |
private T |
Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
private void | |
public boolean | |
public T | |
public void | remove()
Overrides default java. Removes from the underlying collection the last element returned by this iterator (optional operation). |
filter | back to summary |
---|---|
private ServiceRegistry. |
iter | back to summary |
---|---|
private Iterator<? extends T> iter |
next | back to summary |
---|---|
private T next |
FilterIterator | back to summary |
---|---|
public FilterIterator(Iterator<? extends T> iter, ServiceRegistry. |
advance | back to summary |
---|---|
private void advance() |
hasNext | back to summary |
---|---|
public boolean hasNext() Implements java. Doc from java. Returns
|
next | back to summary |
---|---|
public T next() Implements java. Doc from java. Returns the next element in the iteration.
|
remove | back to summary |
---|---|
public void remove() Overrides default java. Doc from java. Removes from the underlying collection the last element returned
by this iterator (optional operation). This method can be called
only once per call to The behavior of an iterator is unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method, unless an overriding class has specified a concurrent modification policy.
The behavior of an iterator is unspecified if this method is called
after a call to the |