The Encog Project

org.encog.util.orm
Class ScrollingResult

java.lang.Object
  extended by org.encog.util.orm.ScrollingResult

public class ScrollingResult
extends java.lang.Object

Used to manage large (scrolled) results from Hibernate.

Author:
jheaton

Constructor Summary
ScrollingResult(org.hibernate.Query q)
          Construct a scrolling results object.
 
Method Summary
 DataObject next()
          Fetch the next object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ScrollingResult

public ScrollingResult(org.hibernate.Query q)
Construct a scrolling results object.

Parameters:
q - The query.
Method Detail

next

public DataObject next()
Fetch the next object.

Returns:
The next object.

The Encog Project