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
 

Methods in com.j256.ormlite.dao that return CloseableIterator
 CloseableIterator<T> LazyForeignCollection.iterator()
           
 CloseableIterator<T> ForeignCollection.iterator()
          Like Collection.iterator() but returns a closeable iterator instead.
 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> CloseableIterable.iterator()
          Returns an iterator over a set of elements of type T.
 CloseableIterator<T> Dao.iterator(PreparedQuery<T> preparedQuery)
          Same as Dao.iterator() but with a prepared query parameter.
<T> CloseableIterator<T>
RawResults.iterator(RawRowMapper<T> mapper)
          Deprecated. Get an iterator which will return a T which is mapped from the String[] array raw results my the mapper argument.
 CloseableIterator<T> LazyForeignCollection.iteratorThrow()
           
 CloseableIterator<T> ForeignCollection.iteratorThrow()
          Like Collection.iterator() but returns a closeable iterator instead and can throw a SQLException.
 CloseableIterator<T> EagerForeignCollection.iteratorThrow()
           
 

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> 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()).
 



Copyright © 2011. All Rights Reserved.