| Interface | Description |
|---|---|
| TypeConverter<F,T> |
Converts a value of a type to another type.
|
| Class | Description |
|---|---|
| Database |
Provides database abstraction layer APIs to handle SQLite operations:
SELECT,
UPDATE, INSERT, DELETE. |
| DatabaseOpenHelper |
Handles database table creation.
|
| DateConverter | |
| JSONRowMapper<T> |
Maps a
Cursor or a JSONObject object to an instance of T. |
| RowMapper<T> |
Maps a
Cursor to an instance of T. |
| Exception | Description |
|---|---|
| UnsupportedTypeException |
| Annotation Type | Description |
|---|---|
| Column |
Marks a field as a table column.
|
| CompositeIndex |
Marks a field as part of a composite index.
|
| Index |
Marks a field as indexed.
|
| Table |
Marks a class as a database table.
|
| UniqueCompositeIndex |
Marks a field as part of an unique composite index.
|
| UseConverter |
Specifies a
TypeConverter to convert the value of a field to and from
its underlying value in the database. |