| Interface | Description |
|---|---|
| CloseableListIterator<T> |
A list iterator that needs to be closed (or the associated list) to free underlying resources like a database cursor.
|
| WhereCondition |
Internal interface to model WHERE conditions used in queries.
|
| Class | Description |
|---|---|
| CountQuery<T> | |
| CursorQuery<T> |
A repeatable query returning a raw android.database.Cursor.
|
| DeleteQuery<T> |
A repeatable query for deleting entities.
|
| Join<SRC,DST> |
A Join lets you relate to other entity types for queries, and allows using WHERE statements on the joined entity
type.
|
| LazyList<E> |
A thread-safe, unmodifiable list that reads entities once they are accessed from an underlying database cursor.
|
| Query<T> |
A repeatable query returning entities.
|
| QueryBuilder<T> |
Builds custom entity queries using constraints and parameters and without SQL (QueryBuilder creates SQL for you).
|
| WhereCondition.AbstractCondition | |
| WhereCondition.PropertyCondition | |
| WhereCondition.StringCondition |
Available under the Apache License, Version 2.0 - Copyright © 2011-2015 greenrobot.de. All Rights Reserved.