Package net.sf.saxon.tree.iter
Interface AtomicIterator
-
- All Superinterfaces:
java.lang.AutoCloseable
,java.io.Closeable
,SequenceIterator
- All Known Implementing Classes:
AscendingRangeIterator
,ATokenIterator
,BigRangeIterator
,CodepointIterator
,DescendingRangeIterator
,JTokenIterator
,ListIterator.OfAtomic
,net.sf.saxon.expr.RangeIterator
,SingleAtomicIterator
,StringValue.CharacterIterator
,Whitespace.Tokenizer
public interface AtomicIterator extends SequenceIterator
A SequenceIterator is used to iterate over a sequence. An AtomicIterator is a SequenceIterator that returns atomic values and throws no checked exceptions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AtomicValue
next()
Get the next atomic value in the sequence.-
Methods inherited from interface net.sf.saxon.om.SequenceIterator
close
-
-
-
-
Method Detail
-
next
AtomicValue next()
Get the next atomic value in the sequence.- Specified by:
next
in interfaceSequenceIterator
- Returns:
- the next Item. If there are no more items, return null.
-
-