Package net.sf.saxon.tree.jiter
Class MonoIterator<T>
java.lang.Object
net.sf.saxon.tree.jiter.MonoIterator<T>
- All Implemented Interfaces:
Iterator<T>
An iterator over a single object (typically a sub-expression of an expression)
-
Constructor Details
-
Method Details
-
hasNext
public boolean hasNext()Returnstrue
if the iteration has more elements. (In other words, returnstrue
ifnext
would return an element rather than throwing an exception.) -
next
Returns the next element in the iteration.- Specified by:
next
in interfaceIterator<T>
- Returns:
- the next element in the iteration.
- Throws:
NoSuchElementException
- iteration has no more elements.
-