Class LookAheadIteration<E>

java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<E>
org.eclipse.rdf4j.common.iteration.LookAheadIteration<E>
All Implemented Interfaces:
AutoCloseable, Iterator<E>, CloseableIteration<E>
Direct Known Subclasses:
CrossProductIteration, DescribeIteration, DistinctModelReducingUnionIteration, FilteringIteration, HashJoinIteration, IndependentJoingroupBindingsIteration, IndependentJoingroupBindingsIteration2, IndependentJoingroupBindingsIteration3, JoinExecutorBase, JoinIterator, LeftJoinIterator, MemTripleIterator, MultiProjectionIterator, ParallelExecutorBase, ParallelServiceExecutor, PathIteration, QueueIteration, SPARQLCrossProductIteration, UnionIteration, ZeroLengthPathIteration

@Deprecated(since="4.1.0") public abstract class LookAheadIteration<E> extends AbstractCloseableIteration<E>
Deprecated.
An Iteration that looks one element ahead, if necessary, to handle calls to hasNext(). This is a convenient super class for Iterations that have no easy way to tell if there are any more results, but still should implement the java.util.Iteration interface.
  • Constructor Details

    • LookAheadIteration

      protected LookAheadIteration()
      Deprecated.
  • Method Details

    • getNextElement

      protected abstract E getNextElement()
      Deprecated.
      Gets the next element. Subclasses should implement this method so that it returns the next element.
      Returns:
      The next element, or null if no more elements are available.
    • hasNext

      public final boolean hasNext()
      Deprecated.
    • next

      public final E next()
      Deprecated.
    • remove

      public void remove()
      Deprecated.
    • handleClose

      protected void handleClose()
      Deprecated.
      Description copied from class: AbstractCloseableIteration
      Called by AbstractCloseableIteration.close() when it is called for the first time. This method is only called once on each iteration. By default, this method does nothing.
      Overrides:
      handleClose in class AbstractCloseableIteration<E>