Package | Description |
---|---|
com.j256.ormlite.dao |
Database Access Object classes.
|
com.j256.ormlite.stmt |
SQL statement generation and processing.
|
Modifier and Type | Field and Description |
---|---|
protected CloseableIterator<T> |
BaseDaoImpl.lastIterator |
Modifier and Type | Method and Description |
---|---|
CloseableIterator<T> |
BaseDaoImpl.closeableIterator() |
CloseableIterator<T> |
RuntimeExceptionDao.closeableIterator() |
CloseableIterator<T> |
CloseableIterable.closeableIterator()
Returns an iterator over a set of elements of type T which can be closed.
|
CloseableIterator<T> |
LazyForeignCollection.closeableIterator() |
CloseableIterator<T> |
CloseableWrappedIterableImpl.closeableIterator() |
CloseableIterator<T> |
EagerForeignCollection.closeableIterator() |
CloseableIterator<T> |
ForeignCollection.closeableIterator(int flags)
Same as
ForeignCollection.iterator(int) . |
CloseableIterator<T> |
LazyForeignCollection.closeableIterator(int flags) |
CloseableIterator<T> |
EagerForeignCollection.closeableIterator(int flags) |
CloseableIterator<T> |
BaseDaoImpl.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> |
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> |
CloseableWrappedIterableImpl.iterator() |
CloseableIterator<T> |
EagerForeignCollection.iterator() |
CloseableIterator<T> |
BaseDaoImpl.iterator(int resultFlags) |
CloseableIterator<T> |
Dao.iterator(int resultFlags)
Same as
Dao.iterator() but while specifying flags for the results. |
CloseableIterator<T> |
RuntimeExceptionDao.iterator(int resultFlags) |
CloseableIterator<T> |
ForeignCollection.iterator(int flags)
Like
Collection.iterator() but while specifying flags for the results. |
CloseableIterator<T> |
LazyForeignCollection.iterator(int flags) |
CloseableIterator<T> |
EagerForeignCollection.iterator(int flags) |
CloseableIterator<T> |
BaseDaoImpl.iterator(PreparedQuery<T> preparedQuery) |
CloseableIterator<T> |
Dao.iterator(PreparedQuery<T> preparedQuery)
Same as
Dao.iterator() but with a prepared query parameter. |
CloseableIterator<T> |
RuntimeExceptionDao.iterator(PreparedQuery<T> preparedQuery) |
CloseableIterator<T> |
BaseDaoImpl.iterator(PreparedQuery<T> preparedQuery,
int resultFlags) |
CloseableIterator<T> |
Dao.iterator(PreparedQuery<T> preparedQuery,
int resultFlags)
Same as
Dao.iterator(PreparedQuery) but while specifying flags for the results. |
CloseableIterator<T> |
RuntimeExceptionDao.iterator(PreparedQuery<T> preparedQuery,
int resultFlags) |
CloseableIterator<T> |
ForeignCollection.iteratorThrow()
Like
Collection.iterator() but returns a closeable iterator instead and can throw a SQLException. |
CloseableIterator<T> |
LazyForeignCollection.iteratorThrow() |
CloseableIterator<T> |
EagerForeignCollection.iteratorThrow() |
CloseableIterator<T> |
ForeignCollection.iteratorThrow(int flags)
Like
ForeignCollection.iteratorThrow() but while specifying flags for the results. |
CloseableIterator<T> |
LazyForeignCollection.iteratorThrow(int flags) |
CloseableIterator<T> |
EagerForeignCollection.iteratorThrow(int flags) |
Constructor and Description |
---|
CloseableSpliteratorImpl(CloseableIterator<? extends T> iterator) |
Modifier and Type | Class and Description |
---|---|
class |
SelectIterator<T,ID>
Internal iterator so we can page through the class.
|
Modifier and Type | Method and Description |
---|---|
CloseableIterator<T> |
RawResultsImpl.closeableIterator() |
CloseableIterator<T> |
QueryBuilder.iterator()
A short cut to
Dao.iterator(PreparedQuery) . |
CloseableIterator<T> |
Where.iterator()
A short-cut for calling
QueryBuilder.iterator() . |
CloseableIterator<T> |
RawResultsImpl.iterator() |
This documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.