Class CloseablePeakableIteration<E,X extends Exception>

java.lang.Object
org.eclipse.rdf4j.sail.shacl.wrapper.data.CloseablePeakableIteration<E,X>
All Implemented Interfaces:
AutoCloseable, CloseableIteration<E,X>, Iteration<E,X>

@InternalUseOnly public class CloseablePeakableIteration<E,X extends Exception> extends Object implements CloseableIteration<E,X>
  • Constructor Details

  • Method Details

    • close

      public void close() throws X
      Description copied from interface: CloseableIteration
      Closes this iteration, freeing any resources that it is holding. If the iteration has already been closed then invoking this method has no effect.
      Specified by:
      close in interface AutoCloseable
      Specified by:
      close in interface CloseableIteration<E,X extends Exception>
      Throws:
      X
    • hasNext

      public boolean hasNext() throws X
      Description copied from interface: Iteration
      Returns true if the iteration has more elements. (In other words, returns true if Iteration.next() would return an element rather than throwing a NoSuchElementException.)
      Specified by:
      hasNext in interface Iteration<E,X extends Exception>
      Returns:
      true if the iteration has more elements.
      Throws:
      X
    • next

      public E next() throws X
      Description copied from interface: Iteration
      Returns the next element in the iteration.
      Specified by:
      next in interface Iteration<E,X extends Exception>
      Returns:
      the next element in the iteration.
      Throws:
      X
    • remove

      public void remove() throws X
      Description copied from interface: Iteration
      Removes from the underlying collection the last element returned by the iteration (optional operation). This method can be called only once per call to next.
      Specified by:
      remove in interface Iteration<E,X extends Exception>
      Throws:
      X
    • peek

      public E peek() throws X
      Throws:
      X