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

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

Uses of CloseableIterable in com.j256.ormlite.dao
 

Subinterfaces of CloseableIterable in com.j256.ormlite.dao
 interface CloseableWrappedIterable<T>
          Extension to CloseableIterable which defines a class which has an iterator() method that returns a CloseableIterator but also can be closed itself.
 interface Dao<T,ID>
          The definition of the Database Access Objects that handle the reading and writing a class from the database.
 interface ForeignCollection<T>
          Collection that is set on a field that as been marked with the ForeignCollectionField annotation when an object is refreshed or queried (i.e.
 interface GenericRawResults<T>
          Results returned by a call to Dao.queryRaw(String, String...) which returns results as a String[], Dao.queryRaw(String, RawRowMapper, String...) which returns results mapped by the caller to an Object, and Dao.queryRaw(String, DataType[], String...) which returns each results as a Object[].
 

Classes in com.j256.ormlite.dao that implement CloseableIterable
 class BaseDaoImpl<T,ID>
          Base class for the Database Access Objects that handle the reading and writing a class from the database.
 class BaseForeignCollection<T,ID>
          Base collection that is set on a field that as been marked with the ForeignCollectionField annotation when an object is refreshed or queried (i.e.
 class CloseableWrappedIterableImpl<T>
          Class which is used to help folks use for loops but still close at the end.
 class EagerForeignCollection<T,ID>
          Collection that is set on a field that as been marked with the ForeignCollectionField annotation when an object is refreshed or queried (i.e.
 class LazyForeignCollection<T,ID>
          Collection that is set on a field that as been marked with the ForeignCollectionField annotation when an object is refreshed or queried (i.e.
 class RuntimeExceptionDao<T,ID>
          Proxy to a Dao that wraps each Exception and rethrows it as RuntimeException.
 

Constructors in com.j256.ormlite.dao with parameters of type CloseableIterable
CloseableWrappedIterableImpl(CloseableIterable<T> iterable)
           
 

Uses of CloseableIterable in com.j256.ormlite.stmt
 

Classes in com.j256.ormlite.stmt that implement CloseableIterable
 class RawResultsImpl<T>
          Handler for our raw results objects which does the conversion for various different results: String[], Object[], and user defined .
 



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