org.codehaus.stax2.ri.SingletonIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stax2-api Show documentation
Show all versions of stax2-api Show documentation
Stax2 API is an extension to basic Stax 1.0 API that adds significant new functionality, such as full-featured bi-direction validation interface and high-performance Typed Access API.
package org.codehaus.stax2.ri;
import java.util.Iterator;
/**
* Simple read-only iterator that iterators over one specific item, passed
* in as constructor argument.
*/
public class SingletonIterator
implements Iterator
{
private final Object mValue;
private boolean mDone = false;
public SingletonIterator(Object value) {
mValue = value;
}
public boolean hasNext() {
return !mDone;
}
public Object next() {
if (mDone) {
throw new java.util.NoSuchElementException();
}
mDone = true;
return mValue;
}
public void remove()
{
throw new UnsupportedOperationException("Can not remove item from SingletonIterator.");
}
}