Top Description Fields Constructors Methods
javax.imageio.spi

pack-priv Class FilterIterator<T>

Located in compilation unit of javax.imageio.spi.ServiceRegistry.

extends Object
implements Iterator<T>
Class Inheritance
All Implemented Interfaces
java.util.Iterator

A class for wrapping Iterators with a filter function. This provides an iterator for a subset without duplication.

Field Summary

Modifier and TypeField and Description
private ServiceRegistry.Filter
private Iterator<? extends T>
private T

Constructor Summary

AccessConstructor and Description
public
FilterIterator(Iterator<? extends T> iter, ServiceRegistry.Filter filter)

Method Summary

Modifier and TypeMethod and Description
private void
public boolean
hasNext()

Implements java.util.Iterator.hasNext.

Returns true if the iteration has more elements.

public T
next()

Implements java.util.Iterator.next.

Returns the next element in the iteration.

public void
remove()

Overrides default java.util.Iterator.remove.

Removes from the underlying collection the last element returned by this iterator (optional operation).

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

filterback to summary
private ServiceRegistry.Filter filter
iterback to summary
private Iterator<? extends T> iter
nextback to summary
private T next

Constructor Detail

FilterIteratorback to summary
public FilterIterator(Iterator<? extends T> iter, ServiceRegistry.Filter filter)

Method Detail

advanceback to summary
private void advance()
hasNextback to summary
public boolean hasNext()

Implements java.util.Iterator.hasNext.

Doc from java.util.Iterator.hasNext.

Returns true if the iteration has more elements. (In other words, returns true if next would return an element rather than throwing an exception.)

Returns:boolean

true if the iteration has more elements

nextback to summary
public T next()

Implements java.util.Iterator.next.

Doc from java.util.Iterator.next.

Returns the next element in the iteration.

Returns:T

the next element in the iteration

removeback to summary
public void remove()

Overrides default java.util.Iterator.remove.

Doc from java.util.Iterator.remove.

Removes from the underlying collection the last element returned by this iterator (optional operation). This method can be called only once per call to next.

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 forEachRemaining method.