Package | Description |
---|---|
com.j256.ormlite.dao |
Database Access Object classes.
|
com.j256.ormlite.stmt |
SQL statement generation and processing.
|
Modifier and Type | Interface and Description |
---|---|
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[]. |
Modifier and Type | Class and Description |
---|---|
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. |
class |
StreamableLazyForeignCollection<T,ID>
Lazy foreign collection that provides better support for
Stream s if running with JDK8+. |
Constructor and Description |
---|
CloseableWrappedIterableImpl(CloseableIterable<T> iterable) |
Modifier and Type | Class and Description |
---|---|
class |
RawResultsImpl<T>
Handler for our raw results objects which does the conversion for various different results: String[], Object[], and
user defined T.
|
This documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.