Uses of Interface
com.j256.ormlite.dao.CloseableIterator

Packages that use CloseableIterator
com.j256.ormlite.dao Database Access Object classes. 
com.j256.ormlite.stmt SQL statement generation and processing. 
 

Uses of CloseableIterator in com.j256.ormlite.dao
 

Fields in com.j256.ormlite.dao declared as CloseableIterator
protected  CloseableIterator<T> BaseDaoImpl.lastIterator
           
 

Methods in com.j256.ormlite.dao that return CloseableIterator
 CloseableIterator<T> LazyForeignCollection.closeableIterator()
           
 CloseableIterator<T> EagerForeignCollection.closeableIterator()
           
 CloseableIterator<T> CloseableWrappedIterableImpl.closeableIterator()
           
 CloseableIterator<T> CloseableIterable.closeableIterator()
          Returns an iterator over a set of elements of type T which can be closed.
 CloseableIterator<T> BaseDaoImpl.closeableIterator()
           
 CloseableIterator<T> RuntimeExceptionDao.iterator()
           
 CloseableIterator<T> LazyForeignCollection.iterator()
          The iterator returned from a lazy collection keeps a connection open to the database as it iterates across the collection.
 CloseableIterator<T> EagerForeignCollection.iterator()
           
 CloseableIterator<T> Dao.iterator()
          This satisfies the Iterable interface for the class and allows you to iterate through the objects in the table using SQL.
 CloseableIterator<T> CloseableWrappedIterableImpl.iterator()
           
 CloseableIterator<T> BaseDaoImpl.iterator()
           
 CloseableIterator<T> RuntimeExceptionDao.iterator(PreparedQuery<T> preparedQuery)
           
 CloseableIterator<T> Dao.iterator(PreparedQuery<T> preparedQuery)
          Same as Dao.iterator() but with a prepared query parameter.
 CloseableIterator<T> BaseDaoImpl.iterator(PreparedQuery<T> preparedQuery)
           
 CloseableIterator<T> LazyForeignCollection.iteratorThrow()
          This is the same as LazyForeignCollection.iterator() except it throws.
 CloseableIterator<T> ForeignCollection.iteratorThrow()
          Like Collection.iterator() but returns a closeable iterator instead and can throw a SQLException.
 CloseableIterator<T> EagerForeignCollection.iteratorThrow()
           
 CloseableIterator<T> BaseDaoImpl.seperateIterator()
          Same as BaseDaoImpl.iterator() except this doesn't set the last iterator which can be closed with the BaseDaoImpl.closeLastIterator().
 CloseableIterator<T> BaseDaoImpl.seperateIterator(PreparedQuery<T> preparedQuery)
          Same as BaseDaoImpl.iterator(PreparedQuery) except this doesn't set the last iterator which can be closed with the BaseDaoImpl.closeLastIterator().
 CloseableIterator<T> LazyForeignCollection.seperateIteratorThrow()
          Same as LazyForeignCollection.iteratorThrow() except this doesn't set the last iterator which can be closed with the LazyForeignCollection.closeLastIterator().
 

Uses of CloseableIterator in com.j256.ormlite.stmt
 

Classes in com.j256.ormlite.stmt that implement CloseableIterator
 class SelectIterator<T,ID>
          Internal iterator so we can page through the class.
 

Methods in com.j256.ormlite.stmt that return CloseableIterator
 CloseableIterator<T> RawResultsImpl.closeableIterator()
           
 CloseableIterator<T> Where.iterator()
          A short-cut for calling query() on the original QueryBuilder.iterator().
 CloseableIterator<T> RawResultsImpl.iterator()
           
 CloseableIterator<T> QueryBuilder.iterator()
          A short cut for Dao.iterator(prepare()).
 



This content is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.