net.sf.saxon.tree.jiter.MonoIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Saxon-HE Show documentation
Show all versions of Saxon-HE Show documentation
The XSLT and XQuery Processor
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2018-2023 Saxonica Limited
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package net.sf.saxon.tree.jiter;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* An iterator over a single object (typically a sub-expression of an expression)
*/
public class MonoIterator implements Iterator {
private final T thing; // the single object in the collection
private boolean gone; // true if the single object has already been returned
/**
* Create an iterator of the single object supplied
*
* @param thing the object to be iterated over
*/
public MonoIterator(T thing) {
gone = false;
this.thing = thing;
}
/**
* Returns true
if the iteration has more elements. (In other
* words, returns true
if next
would return an element
* rather than throwing an exception.)
*
* @return true
if the iterator has more elements.
*/
@Override
public boolean hasNext() {
return !gone;
}
/**
* Returns the next element in the iteration.
*
* @return the next element in the iteration.
* @throws NoSuchElementException iteration has no more elements.
*/
@Override
public T next() {
if (gone) {
throw new NoSuchElementException();
} else {
gone = true;
return thing;
}
}
}