Class ExceptionConvertingIteration<E,X extends RuntimeException>

java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<E>
org.eclipse.rdf4j.common.iteration.ExceptionConvertingIteration<E,X>
All Implemented Interfaces:
AutoCloseable, Iterator<E>, CloseableIteration<E>

@Deprecated(since="4.1.0") public abstract class ExceptionConvertingIteration<E,X extends RuntimeException> extends AbstractCloseableIteration<E>
Deprecated.
A CloseableIteration that converts an arbitrary iteration to an iteration with exceptions of type X. Subclasses need to override
invalid @link
#convert(Exception)
to do the conversion.
  • Constructor Details

    • ExceptionConvertingIteration

      protected ExceptionConvertingIteration(CloseableIteration<? extends E> iter)
      Deprecated.
      Creates a new ExceptionConvertingIteration that operates on the supplied iteration.
      Parameters:
      iter - The Iteration that this ExceptionConvertingIteration operates on, must not be null.
  • Method Details

    • convert

      protected abstract X convert(RuntimeException e)
      Deprecated.
      Converts an exception from the underlying iteration to an exception of type X.
    • hasNext

      public boolean hasNext()
      Deprecated.
      Checks whether the underlying Iteration contains more elements.
      Returns:
      true if the underlying Iteration contains more elements, false otherwise.
      Throws:
      X
    • next

      public E next()
      Deprecated.
      Returns the next element from the wrapped Iteration.
      Throws:
      X
      NoSuchElementException - If all elements have been returned.
      IllegalStateException - If the Iteration has been closed.
    • remove

      public void remove()
      Deprecated.
      Calls remove() on the underlying Iteration.
      Throws:
      UnsupportedOperationException - If the wrapped Iteration does not support the remove operation.
      IllegalStateException - If the Iteration has been closed, or if next() has not yet been called, or remove() has already been called after the last call to next().
    • handleClose

      protected void handleClose()
      Deprecated.
      Closes this Iteration as well as the wrapped Iteration if it happens to be a CloseableIteration .
      Overrides:
      handleClose in class AbstractCloseableIteration<E>