Class ScrollableResultsIterator<T>

java.lang.Object
nl.vpro.hibernate.ScrollableResultsIterator<T>
All Implemented Interfaces:
AutoCloseable, Iterator<T>, nl.vpro.util.CloseableIterator<T>
Direct Known Subclasses:
CriteriaIterator, QueryIterator

public class ScrollableResultsIterator<T> extends Object implements nl.vpro.util.CloseableIterator<T>
Executes a Criteria and makes the result accessible as a CloseableIterator.
Since:
1.63
Author:
Michiel Meeuwissen
  • Nested Class Summary

    Nested classes/interfaces inherited from interface nl.vpro.util.CloseableIterator

    nl.vpro.util.CloseableIterator.WrappedCloseableIterator<S extends Object>, nl.vpro.util.CloseableIterator.WrappedPeekingCloseableIterator<S extends Object>
  • Constructor Summary

    Constructors
    Constructor
    Description
    ScrollableResultsIterator(org.hibernate.ScrollableResults r, Function<org.hibernate.ScrollableResults,T> adapter)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    protected void
     
    boolean
     
     
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

    Methods inherited from interface nl.vpro.util.CloseableIterator

    peeking, stream

    Methods inherited from interface java.util.Iterator

    forEachRemaining, remove
  • Constructor Details

    • ScrollableResultsIterator

      public ScrollableResultsIterator(org.hibernate.ScrollableResults r, Function<org.hibernate.ScrollableResults,T> adapter)
  • Method Details

    • hasNext

      public boolean hasNext()
      Specified by:
      hasNext in interface Iterator<T>
    • next

      public T next()
      Specified by:
      next in interface Iterator<T>
    • findNext

      protected void findNext()
    • close

      public void close()
      Specified by:
      close in interface AutoCloseable
    • toString

      public String toString()
      Overrides:
      toString in class Object