| AbstractDao<T,K> |
Base class for all DAOs: Implements entity operations like insert, load, delete, and query.
|
| AbstractDaoMaster |
The master of dao will guide you: start dao sessions with the master.
|
| AbstractDaoSession |
DaoSession gives you access to your DAOs, offers convenient persistence methods, and also serves as a session cache.
To access the DAOs, call the get{entity}Dao methods by the generated DaoSession sub class.
DaoSession offers many of the available persistence operations on entities as a convenience.
|
| DaoLog |
Internal greenDAO logger class.
|
| DbUtils |
Database utils, for example to execute SQL scripts
|
| InternalQueryDaoAccess<T> |
For internal use by greenDAO only.
|
| InternalUnitTestDaoAccess<T,K> |
Reserved for internal unit tests that want to access some non-public methods.
|
| Property |
Meta data describing a property mapped to a database column; used to create WhereCondition object used by the query builder.
|