Class ErrorIterator

  • All Implemented Interfaces:
    java.io.Closeable, java.lang.AutoCloseable, SequenceIterator

    public class ErrorIterator
    extends java.lang.Object
    implements SequenceIterator
    A SequenceIterator that throws an exception as soon as its next() method is called. Used when the method that returns the iterator isn't allowed to throw a checked exception itself.
    • Constructor Detail

    • Method Detail

      • next

        public Item next()
        Get the next item in the sequence. This method changes the state of the iterator, in particular it affects the result of subsequent calls of position() and current().
        Specified by:
        next in interface SequenceIterator
        Returns:
        the next item, or null if there are no more items. Once a call on next() has returned null, no further calls should be made. The preferred action for an iterator if subsequent calls on next() are made is to return null again, and all implementations within Saxon follow this rule.
        Throws:
        UncheckedXPathException - if an error occurs retrieving the next item (which is always the case)
        Since:
        8.4