package org.eclipse.collections.impl.lazy.iterator;
import java.util.Iterator;
import java.util.NoSuchElementException;
public final class SelectInstancesOfIterator<T>
implements Iterator<T>
{
private static final Object NULL = new Object();
private final Iterator<?> iterator;
private final Class<T> clazz;
private Object next = NULL;
public SelectInstancesOfIterator(Iterable<?> iterable, Class<T> clazz)
{
this(iterable.iterator(), clazz);
}
public SelectInstancesOfIterator(Iterator<?> iterator, Class<T> clazz)
{
this.iterator = iterator;
this.clazz = clazz;
}
@Override
public void remove()
{
throw new UnsupportedOperationException("Cannot remove from a selectInstances iterator");
}
@Override
public boolean hasNext()
{
if (this.next != NULL)
{
return true;
}
while (this.iterator.hasNext())
{
Object temp = this.iterator.next();
if (this.clazz.isInstance(temp))
{
this.next = temp;
return true;
}
}
return false;
}
@Override
public T next()
{
if (this.next != NULL || this.hasNext())
{
Object temp = this.next;
this.next = NULL;
return (T) temp;
}
throw new NoSuchElementException();
}
}