A B C D E G I J L N O P Q R S T U V W

A

AbstractDao<T,K> - Class in de.greenrobot.dao
Base class for all DAOs: Implements entity operations like insert, load, delete, and query.
AbstractDao(DaoConfig) - Constructor for class de.greenrobot.dao.AbstractDao
 
AbstractDao(DaoConfig, AbstractDaoSession) - Constructor for class de.greenrobot.dao.AbstractDao
 
AbstractDaoMaster - Class in de.greenrobot.dao
The master of dao will guide you: start dao sessions with the master.
AbstractDaoMaster(SQLiteDatabase, int) - Constructor for class de.greenrobot.dao.AbstractDaoMaster
 
AbstractDaoSession - Class in de.greenrobot.dao
DaoSession gives you access to your DAOs, offers convenient persistence methods, and also serves as a session cache.
AbstractDaoSession(SQLiteDatabase) - Constructor for class de.greenrobot.dao.AbstractDaoSession
 
AbstractDaoSessionTestAbstractDaoMaster,S extends AbstractDaoSession> - Class in de.greenrobot.dao.test
Base class for DAO (master) related testing.
AbstractDaoSessionTest(Class) - Constructor for class de.greenrobot.dao.test.AbstractDaoSessionTest
 
AbstractDaoSessionTest(Class, boolean) - Constructor for class de.greenrobot.dao.test.AbstractDaoSessionTest
 
AbstractDaoSessionTest(Class, Class, boolean) - Constructor for class de.greenrobot.dao.test.AbstractDaoSessionTest
 
AbstractDaoTest<D extends AbstractDao<T,K>,T,K> - Class in de.greenrobot.dao.test
Base class for DAO related testing.
AbstractDaoTest(Class) - Constructor for class de.greenrobot.dao.test.AbstractDaoTest
 
AbstractDaoTest(Class, boolean) - Constructor for class de.greenrobot.dao.test.AbstractDaoTest
 
AbstractDaoTestLongPk<D extends AbstractDao<T,java.lang.Long>,T> - Class in de.greenrobot.dao.test
Base class for DAOs having a long/Long as a PK, which is quite common.
AbstractDaoTestLongPk(Class) - Constructor for class de.greenrobot.dao.test.AbstractDaoTestLongPk
 
AbstractDaoTestSinglePk<D extends AbstractDao<T,K>,T,K> - Class in de.greenrobot.dao.test
Default tests for single-PK entities.
AbstractDaoTestSinglePk(Class) - Constructor for class de.greenrobot.dao.test.AbstractDaoTestSinglePk
 
add(E) - Method in class de.greenrobot.dao.LazyList
 
add(int, E) - Method in class de.greenrobot.dao.LazyList
 
addAll(Collection) - Method in class de.greenrobot.dao.LazyList
 
addAll(int, Collection) - Method in class de.greenrobot.dao.LazyList
 
and(WhereCondition, WhereCondition, WhereCondition...) - Method in class de.greenrobot.dao.QueryBuilder
 
appendColumn(StringBuilder, String) - Static method in class de.greenrobot.dao.SqlUtils
 
appendColumn(StringBuilder, String, String) - Static method in class de.greenrobot.dao.SqlUtils
 
appendColumns(StringBuilder, String, String[]) - Static method in class de.greenrobot.dao.SqlUtils
 
appendColumns(StringBuilder, String[]) - Static method in class de.greenrobot.dao.SqlUtils
 
appendColumnsEqualPlaceholders(StringBuilder, String[]) - Static method in class de.greenrobot.dao.SqlUtils
 
appendColumnsEqValue(StringBuilder, String, String[]) - Static method in class de.greenrobot.dao.SqlUtils
 
appendPlaceholders(StringBuilder, int) - Static method in class de.greenrobot.dao.SqlUtils
 
appendTo(StringBuilder, String) - Method in interface de.greenrobot.dao.WhereCondition
 
appendTo(StringBuilder, String) - Method in class de.greenrobot.dao.WhereCondition.PropertyCondition
 
appendTo(StringBuilder, String) - Method in class de.greenrobot.dao.WhereCondition.StringCondition
 
appendValuesTo(List) - Method in class de.greenrobot.dao.WhereCondition.AbstractCondition
 
appendValuesTo(List) - Method in interface de.greenrobot.dao.WhereCondition
 
ASSERT - Static variable in class de.greenrobot.dao.DaoLog
 

B

between(Object, Object) - Method in class de.greenrobot.dao.Property
Creates an "BETWEEN ...
build() - Method in class de.greenrobot.dao.QueryBuilder
Builds a reusable query object (Query objects can be executed more efficiently than creating a QueryBuilder for each execution.
buildDelete() - Method in class de.greenrobot.dao.QueryBuilder
Builds a reusable query object for deletion (Query objects can be executed more efficiently than creating a QueryBuilder for each execution.

C

callInTx(Callable) - Method in class de.greenrobot.dao.AbstractDaoSession
Calls the given Callable inside a database transaction and returns the result of the Callable.
clear() - Method in interface de.greenrobot.dao.IdentityScope
 
clear() - Method in class de.greenrobot.dao.IdentityScopeLong
 
clear() - Method in class de.greenrobot.dao.IdentityScopeObject
 
clear() - Method in class de.greenrobot.dao.LazyList
 
clear() - Method in class de.greenrobot.dao.LongHashMap
 
clone() - Method in class de.greenrobot.dao.DaoConfig
Does not copy identity scope.
close() - Method in class de.greenrobot.dao.LazyList
 
CloseableListIterator<T> - Interface in de.greenrobot.dao
A list iterator that needs to be closed (or the associated list) to free underlying resources like a database cursor.
columnName - Variable in class de.greenrobot.dao.Property
 
contains(Object) - Method in class de.greenrobot.dao.LazyList
 
containsAll(Collection) - Method in class de.greenrobot.dao.LazyList
 
containsKey(long) - Method in class de.greenrobot.dao.LongHashMap
 
copyAllBytes(InputStream, OutputStream) - Static method in class de.greenrobot.dao.DbUtils
Copies all available data from in to out without closing any stream.
count() - Method in class de.greenrobot.dao.AbstractDao
 
createSqlDelete(String, String[]) - Static method in class de.greenrobot.dao.SqlUtils
 
createSqlInsert(String, String, String[]) - Static method in class de.greenrobot.dao.SqlUtils
 
createSqlSelect(String, String, String[]) - Static method in class de.greenrobot.dao.SqlUtils
Creates an select for given columns with a trailing space
createSqlUpdate(String, String[], String[]) - Static method in class de.greenrobot.dao.SqlUtils
 

D

d(String) - Static method in class de.greenrobot.dao.DaoLog
 
d(String, Throwable) - Static method in class de.greenrobot.dao.DaoLog
 
DaoConfig - Class in de.greenrobot.dao
Internal class used by greenDAO.
DaoException - Class in de.greenrobot.dao
Exception thrown when something goes wrong in the DAO/ORM layer.
DaoException() - Constructor for class de.greenrobot.dao.DaoException
 
DaoException(String) - Constructor for class de.greenrobot.dao.DaoException
 
DaoException(String, Throwable) - Constructor for class de.greenrobot.dao.DaoException
 
DaoException(Throwable) - Constructor for class de.greenrobot.dao.DaoException
 
DaoLog - Class in de.greenrobot.dao
Internal greenDAO logger class.
DaoLog() - Constructor for class de.greenrobot.dao.DaoLog
 
DbTest<T extends Application> - Class in de.greenrobot.dao.test
Base class for database related testing.
DbTest() - Constructor for class de.greenrobot.dao.test.DbTest
 
DbTest(boolean) - Constructor for class de.greenrobot.dao.test.DbTest
 
DbTest(Class, boolean) - Constructor for class de.greenrobot.dao.test.DbTest
 
DbUtils - Class in de.greenrobot.dao
Database utils, for example to execute SQL scripts
DbUtils() - Constructor for class de.greenrobot.dao.DbUtils
 
de.greenrobot.dao - package de.greenrobot.dao
 
de.greenrobot.dao.test - package de.greenrobot.dao.test
 
DEBUG - Static variable in class de.greenrobot.dao.DaoLog
 
delete(T) - Method in class de.greenrobot.dao.AbstractDao
Deletes the given entity from the database.
delete(T) - Method in class de.greenrobot.dao.AbstractDaoSession
Convenient call for AbstractDao.delete(Object).
deleteAll() - Method in class de.greenrobot.dao.AbstractDao
 
deleteAll(Class) - Method in class de.greenrobot.dao.AbstractDaoSession
Convenient call for AbstractDao.deleteAll().
deleteByKey(K) - Method in class de.greenrobot.dao.AbstractDao
Deletes an entity with the given PK from the database.
DeleteQuery<T> - Class in de.greenrobot.dao
A repeatable query for deleting entities.
DeleteQuery(AbstractDao, String, Collection) - Constructor for class de.greenrobot.dao.DeleteQuery
 
detach(T) - Method in class de.greenrobot.dao.AbstractDao
Detaches an entity from the identity scope (session).
detach(K, T) - Method in interface de.greenrobot.dao.IdentityScope
 
detach(Long, T) - Method in class de.greenrobot.dao.IdentityScopeLong
 
detach(K, T) - Method in class de.greenrobot.dao.IdentityScopeObject
 

E

e(String) - Static method in class de.greenrobot.dao.DaoLog
 
e(String, Throwable) - Static method in class de.greenrobot.dao.DaoLog
 
eq(Object) - Method in class de.greenrobot.dao.Property
Creates an "equal ('=')" condition for this property.
ERROR - Static variable in class de.greenrobot.dao.DaoLog
 
executeDeleteWithoutDetachingEntities() - Method in class de.greenrobot.dao.DeleteQuery
Deletes all matching entities without detaching them from the identity scope (aka session/cache).
executeSqlScript(Context, SQLiteDatabase, String) - Static method in class de.greenrobot.dao.DbUtils
Calls DbUtils.executeSqlScript(Context, SQLiteDatabase, String, boolean) with transactional set to true.
executeSqlScript(Context, SQLiteDatabase, String, boolean) - Static method in class de.greenrobot.dao.DbUtils
Executes the given SQL asset in the given database (SQL file should be UTF-8).
executeSqlStatements(SQLiteDatabase, String[]) - Static method in class de.greenrobot.dao.DbUtils
 
executeSqlStatementsInTx(SQLiteDatabase, String[]) - Static method in class de.greenrobot.dao.DbUtils
 

G

ge(Object) - Method in class de.greenrobot.dao.Property
Creates an "greater or equal ('>=')" condition for this property.
get(K) - Method in interface de.greenrobot.dao.IdentityScope
 
get(Long) - Method in class de.greenrobot.dao.IdentityScopeLong
 
get(K) - Method in class de.greenrobot.dao.IdentityScopeObject
 
get(int) - Method in class de.greenrobot.dao.LazyList
 
get(long) - Method in class de.greenrobot.dao.LongHashMap
 
get2(long) - Method in class de.greenrobot.dao.IdentityScopeLong
 
get2NoLock(long) - Method in class de.greenrobot.dao.IdentityScopeLong
 
getAllColumns() - Method in class de.greenrobot.dao.AbstractDao
 
getDao(Class) - Method in class de.greenrobot.dao.AbstractDaoSession
 
getDao() - Method in class de.greenrobot.dao.UnitTestDaoAccess
 
getIdentityScope() - Method in class de.greenrobot.dao.DaoConfig
 
getKey(T) - Method in class de.greenrobot.dao.UnitTestDaoAccess
 
getLoadedCount() - Method in class de.greenrobot.dao.LazyList
 
getNoLock(K) - Method in interface de.greenrobot.dao.IdentityScope
 
getNoLock(Long) - Method in class de.greenrobot.dao.IdentityScopeLong
 
getNoLock(K) - Method in class de.greenrobot.dao.IdentityScopeObject
 
getNonPkColumns() - Method in class de.greenrobot.dao.AbstractDao
 
getPkColumns() - Method in class de.greenrobot.dao.AbstractDao
 
getPkProperty() - Method in class de.greenrobot.dao.AbstractDao
 
getProperties() - Method in class de.greenrobot.dao.AbstractDao
 
getProperties() - Method in class de.greenrobot.dao.UnitTestDaoAccess
 
getSchemaVersion() - Method in class de.greenrobot.dao.AbstractDaoMaster
 
getSelectByRowId() - Method in class de.greenrobot.dao.TableStatements
 
getSession() - Method in class de.greenrobot.dao.AbstractDao
 
getStackTraceString(Throwable) - Static method in class de.greenrobot.dao.DaoLog
 
getTablename() - Method in class de.greenrobot.dao.AbstractDao
 
gt(Object) - Method in class de.greenrobot.dao.Property
Creates an "greater than ('>')" condition for this property.

I

i(String) - Static method in class de.greenrobot.dao.DaoLog
 
i(String, Throwable) - Static method in class de.greenrobot.dao.DaoLog
 
IdentityScope - Interface in de.greenrobot.dao
Common interface for a identity scopes needed internally by greenDAO.
IdentityScopeLong - Class in de.greenrobot.dao
The context for entity identities.
IdentityScopeLong() - Constructor for class de.greenrobot.dao.IdentityScopeLong
 
IdentityScopeObject - Class in de.greenrobot.dao
The context for entity identities.
IdentityScopeObject() - Constructor for class de.greenrobot.dao.IdentityScopeObject
 
IdentityScopeType - Enum in de.greenrobot.dao
 
in(Object...) - Method in class de.greenrobot.dao.Property
Creates an "IN (..., ..., ...)" condition for this property.
in(Collection) - Method in class de.greenrobot.dao.Property
Creates an "IN (..., ..., ...)" condition for this property.
indexOf(Object) - Method in class de.greenrobot.dao.LazyList
 
INFO - Static variable in class de.greenrobot.dao.DaoLog
 
initIdentityScope(IdentityScopeType) - Method in class de.greenrobot.dao.DaoConfig
 
insert(T) - Method in class de.greenrobot.dao.AbstractDao
Insert an entity into the table associated with a concrete DAO.
insert(T) - Method in class de.greenrobot.dao.AbstractDaoSession
Convenient call for AbstractDao.insert(Object).
insertInTx(Iterable) - Method in class de.greenrobot.dao.AbstractDao
Inserts the given entities in the database using a transaction.
insertInTx(T...) - Method in class de.greenrobot.dao.AbstractDao
Inserts the given entities in the database using a transaction.
insertInTx(Iterable, boolean) - Method in class de.greenrobot.dao.AbstractDao
Inserts the given entities in the database using a transaction.
insertOrReplace(T) - Method in class de.greenrobot.dao.AbstractDao
Insert an entity into the table associated with a concrete DAO.
insertOrReplace(T) - Method in class de.greenrobot.dao.AbstractDaoSession
Convenient call for AbstractDao.insertOrReplace(Object).
insertWithoutSettingPk(T) - Method in class de.greenrobot.dao.AbstractDao
Insert an entity into the table associated with a concrete DAO.
isClosed() - Method in class de.greenrobot.dao.LazyList
 
isEmpty() - Method in class de.greenrobot.dao.LazyList
 
isEntityUpdateable() - Method in class de.greenrobot.dao.UnitTestDaoAccess
 
isLoadedCompletely() - Method in class de.greenrobot.dao.LazyList
 
isLoggable(int) - Static method in class de.greenrobot.dao.DaoLog
 
isNotNull() - Method in class de.greenrobot.dao.Property
Creates an "IS NOT NULL" condition for this property.
isNull() - Method in class de.greenrobot.dao.Property
Creates an "IS NULL" condition for this property.
iterator() - Method in class de.greenrobot.dao.LazyList
 

J

join(Class, Property) - Method in class de.greenrobot.dao.QueryBuilder
Not supported yet.
joinToMany(Class, Property) - Method in class de.greenrobot.dao.QueryBuilder
Not supported yet.

L

lastIndexOf(Object) - Method in class de.greenrobot.dao.LazyList
 
LazyList<E> - Class in de.greenrobot.dao
A thread-safe, unmodifiable list that reads entities once they are accessed from an underlying database cursor.
le(Object) - Method in class de.greenrobot.dao.Property
Creates an "less or equal ('<=')" condition for this property.
like(String) - Method in class de.greenrobot.dao.Property
Creates an "LIKE" condition for this property.
limit(int) - Method in class de.greenrobot.dao.QueryBuilder
Limits the number of results returned by queries.
list() - Method in class de.greenrobot.dao.Query
Executes the query and returns the result as a list containing all entities loaded into memory.
list() - Method in class de.greenrobot.dao.QueryBuilder
Shorthand for build().
listIterator() - Method in class de.greenrobot.dao.LazyList
 
listIterator(int) - Method in class de.greenrobot.dao.LazyList
 
listIterator() - Method in class de.greenrobot.dao.Query
Executes the query and returns the result as a list iterator; make sure to close it to close the underlying cursor.
listIterator() - Method in class de.greenrobot.dao.QueryBuilder
Shorthand for build().
listIteratorAutoClose() - Method in class de.greenrobot.dao.LazyList
Closes this list's cursor once the iterator is fully iterated through.
listLazy() - Method in class de.greenrobot.dao.Query
Executes the query and returns the result as a list that lazy loads the entities on first access.
listLazy() - Method in class de.greenrobot.dao.QueryBuilder
Shorthand for build().
listLazyUncached() - Method in class de.greenrobot.dao.Query
Executes the query and returns the result as a list that lazy loads the entities on every access (uncached).
listLazyUncached() - Method in class de.greenrobot.dao.QueryBuilder
Shorthand for build().
load(K) - Method in class de.greenrobot.dao.AbstractDao
Loads and entity for the given PK.
load(Class, K) - Method in class de.greenrobot.dao.AbstractDaoSession
Convenient call for AbstractDao.load(Object).
loadAll() - Method in class de.greenrobot.dao.AbstractDao
Loads all available entities from the database.
loadAll(Class) - Method in class de.greenrobot.dao.AbstractDaoSession
Convenient call for AbstractDao.loadAll().
loadByRowId(long) - Method in class de.greenrobot.dao.AbstractDao
 
loadRemaining() - Method in class de.greenrobot.dao.LazyList
Loads the remaining entities (if any) that were not loaded before.
lock() - Method in interface de.greenrobot.dao.IdentityScope
 
lock() - Method in class de.greenrobot.dao.IdentityScopeLong
 
lock() - Method in class de.greenrobot.dao.IdentityScopeObject
 
LOG_SQL - Static variable in class de.greenrobot.dao.QueryBuilder
Set to true to debug the SQL.
LOG_VALUES - Static variable in class de.greenrobot.dao.QueryBuilder
Set to see the given values.
logStats() - Method in class de.greenrobot.dao.LongHashMap
 
LongHashMap<T> - Class in de.greenrobot.dao
An minimalistic hash map optimized for long keys.
LongHashMap() - Constructor for class de.greenrobot.dao.LongHashMap
 
LongHashMap(int) - Constructor for class de.greenrobot.dao.LongHashMap
 
lt(Object) - Method in class de.greenrobot.dao.Property
Creates an "less than ('<')" condition for this property.

N

name - Variable in class de.greenrobot.dao.Property
 
newSession() - Method in class de.greenrobot.dao.AbstractDaoMaster
 
newSession(IdentityScopeType) - Method in class de.greenrobot.dao.AbstractDaoMaster
 
notEq(Object) - Method in class de.greenrobot.dao.Property
Creates an "not equal ('<>')" condition for this property.

O

offset(int) - Method in class de.greenrobot.dao.QueryBuilder
Sets the offset for query results in combination with QueryBuilder.limit(int).
op - Variable in class de.greenrobot.dao.WhereCondition.PropertyCondition
 
or(WhereCondition, WhereCondition, WhereCondition...) - Method in class de.greenrobot.dao.QueryBuilder
 
orderAsc(Property...) - Method in class de.greenrobot.dao.QueryBuilder
Adds the given properties to the ORDER BY section using ascending order.
orderCustom(Property, String) - Method in class de.greenrobot.dao.QueryBuilder
Adds the given properties to the ORDER BY section using the given custom order.
orderDesc(Property...) - Method in class de.greenrobot.dao.QueryBuilder
Adds the given properties to the ORDER BY section using descending order.
orderRaw(String) - Method in class de.greenrobot.dao.QueryBuilder
Adds the given raw SQL string to the ORDER BY section.
oridinal - Variable in class de.greenrobot.dao.Property
 

P

peak(int) - Method in class de.greenrobot.dao.LazyList
Like get but does not load the entity if it was not loaded before.
primaryKey - Variable in class de.greenrobot.dao.Property
 
println(int, String) - Static method in class de.greenrobot.dao.DaoLog
 
Property - Class in de.greenrobot.dao
Meta data describing a property mapped to a database column; used to create WhereCondition object used by the query builder.
Property(int, Class, String, boolean, String) - Constructor for class de.greenrobot.dao.Property
 
property - Variable in class de.greenrobot.dao.WhereCondition.PropertyCondition
 
put(K, T) - Method in interface de.greenrobot.dao.IdentityScope
 
put(Long, T) - Method in class de.greenrobot.dao.IdentityScopeLong
 
put(K, T) - Method in class de.greenrobot.dao.IdentityScopeObject
 
put(long, T) - Method in class de.greenrobot.dao.LongHashMap
 
put2(long, T) - Method in class de.greenrobot.dao.IdentityScopeLong
 
put2NoLock(long, T) - Method in class de.greenrobot.dao.IdentityScopeLong
 
putNoLock(K, T) - Method in interface de.greenrobot.dao.IdentityScope
 
putNoLock(Long, T) - Method in class de.greenrobot.dao.IdentityScopeLong
 
putNoLock(K, T) - Method in class de.greenrobot.dao.IdentityScopeObject
 

Q

query(String, String[], String, String, String) - Method in class de.greenrobot.dao.AbstractDao
Performs a standard Android-style query for entities.
Query<T> - Class in de.greenrobot.dao
A repeatable query returning entities.
queryBuilder() - Method in class de.greenrobot.dao.AbstractDao
 
queryBuilder(Class) - Method in class de.greenrobot.dao.AbstractDaoSession
Convenient call for AbstractDao.queryBuilder().
QueryBuilder<T> - Class in de.greenrobot.dao
Builds custom entity queries using constraints and parameters and without SQL (QueryBuilder creates SQL for you).
queryRaw(String, String...) - Method in class de.greenrobot.dao.AbstractDao
A raw-style query where you can pass any WHERE clause and arguments.
queryRaw(Class, String, String...) - Method in class de.greenrobot.dao.AbstractDaoSession
Convenient call for AbstractDao.queryRaw(String, String...).

R

readAllBytes(InputStream) - Static method in class de.greenrobot.dao.DbUtils
 
readAsset(Context, String) - Static method in class de.greenrobot.dao.DbUtils
 
readEntity(Cursor, int) - Method in class de.greenrobot.dao.UnitTestDaoAccess
 
readKey(Cursor, int) - Method in class de.greenrobot.dao.UnitTestDaoAccess
 
refresh(T) - Method in class de.greenrobot.dao.AbstractDao
Resets all locally changed properties of the entity by reloading the values from the database.
refresh(T) - Method in class de.greenrobot.dao.AbstractDaoSession
Convenient call for AbstractDao.refresh(Object).
remove(K) - Method in interface de.greenrobot.dao.IdentityScope
 
remove(Long) - Method in class de.greenrobot.dao.IdentityScopeLong
 
remove(K) - Method in class de.greenrobot.dao.IdentityScopeObject
 
remove(int) - Method in class de.greenrobot.dao.LazyList
 
remove(Object) - Method in class de.greenrobot.dao.LazyList
 
remove(long) - Method in class de.greenrobot.dao.LongHashMap
 
removeAll(Collection) - Method in class de.greenrobot.dao.LazyList
 
reserveRoom(int) - Method in interface de.greenrobot.dao.IdentityScope
 
reserveRoom(int) - Method in class de.greenrobot.dao.IdentityScopeLong
 
reserveRoom(int) - Method in class de.greenrobot.dao.IdentityScopeObject
 
reserveRoom(int) - Method in class de.greenrobot.dao.LongHashMap
Target load: 0,6
retainAll(Collection) - Method in class de.greenrobot.dao.LazyList
 
runInTx(Runnable) - Method in class de.greenrobot.dao.AbstractDaoSession
Run the given Runnable inside a database transaction.

S

set(int, E) - Method in class de.greenrobot.dao.LazyList
 
setCapacity(int) - Method in class de.greenrobot.dao.LongHashMap
 
setIdentityScopeBeforeSetUp(IdentityScope) - Method in class de.greenrobot.dao.test.AbstractDaoTest
 
setLimit(int) - Method in class de.greenrobot.dao.Query
Sets the limit of the maximum number of results returned by this Query.
setOffset(int) - Method in class de.greenrobot.dao.Query
Sets the offset for results returned by this Query.
setParameter(int, Object) - Method in class de.greenrobot.dao.Query
Sets the parameter (0 based) using the position in which it was added during building the query.
size() - Method in class de.greenrobot.dao.LazyList
 
size() - Method in class de.greenrobot.dao.LongHashMap
 
SqlUtils - Class in de.greenrobot.dao
Helper class to create SQL statements as used by greenDAO internally.
SqlUtils() - Constructor for class de.greenrobot.dao.SqlUtils
 
subList(int, int) - Method in class de.greenrobot.dao.LazyList
 

T

TableStatements - Class in de.greenrobot.dao
Helper class to create SQL statements for specific tables (used by greenDAO internally).
testAssignPk() - Method in class de.greenrobot.dao.test.AbstractDaoTestSinglePk
 
testCount() - Method in class de.greenrobot.dao.test.AbstractDaoTestSinglePk
 
testDelete() - Method in class de.greenrobot.dao.test.AbstractDaoTestSinglePk
 
testDeleteAll() - Method in class de.greenrobot.dao.test.AbstractDaoTestSinglePk
 
testInsertAndLoad() - Method in class de.greenrobot.dao.test.AbstractDaoTestSinglePk
 
testInsertInTx() - Method in class de.greenrobot.dao.test.AbstractDaoTestSinglePk
 
testInsertOrReplaceTwice() - Method in class de.greenrobot.dao.test.AbstractDaoTestSinglePk
 
testInsertTwice() - Method in class de.greenrobot.dao.test.AbstractDaoTestSinglePk
 
testLoadAll() - Method in class de.greenrobot.dao.test.AbstractDaoTestSinglePk
 
testLoadPk() - Method in class de.greenrobot.dao.test.AbstractDaoTestSinglePk
 
testLoadPkWithOffset() - Method in class de.greenrobot.dao.test.AbstractDaoTestSinglePk
 
testQuery() - Method in class de.greenrobot.dao.test.AbstractDaoTestSinglePk
 
testReadWithOffset() - Method in class de.greenrobot.dao.test.AbstractDaoTestSinglePk
 
testRowId() - Method in class de.greenrobot.dao.test.AbstractDaoTestSinglePk
 
testUpdate() - Method in class de.greenrobot.dao.test.AbstractDaoTestSinglePk
 
toArray() - Method in class de.greenrobot.dao.LazyList
 
toArray(T[]) - Method in class de.greenrobot.dao.LazyList
 
type - Variable in class de.greenrobot.dao.Property
 

U

unique() - Method in class de.greenrobot.dao.Query
Executes the query and returns the unique result or null.
unique() - Method in class de.greenrobot.dao.QueryBuilder
Shorthand for build().
uniqueOrThrow() - Method in class de.greenrobot.dao.Query
Executes the query and returns the unique result (never null).
uniqueOrThrow() - Method in class de.greenrobot.dao.QueryBuilder
Shorthand for build().
UnitTestDaoAccess - Class in de.greenrobot.dao
Reserved for internal unit tests that want to access some non-public methods.
UnitTestDaoAccess(SQLiteDatabase, Class>, IdentityScope) - Constructor for class de.greenrobot.dao.UnitTestDaoAccess
 
unlock() - Method in interface de.greenrobot.dao.IdentityScope
 
unlock() - Method in class de.greenrobot.dao.IdentityScopeLong
 
unlock() - Method in class de.greenrobot.dao.IdentityScopeObject
 
update(T) - Method in class de.greenrobot.dao.AbstractDao
 
update(T) - Method in class de.greenrobot.dao.AbstractDaoSession
Convenient call for AbstractDao.update(Object).
updateInTx(Iterable) - Method in class de.greenrobot.dao.AbstractDao
Inserts the given entities in the database using a transaction.

V

v(String) - Static method in class de.greenrobot.dao.DaoLog
 
v(String, Throwable) - Static method in class de.greenrobot.dao.DaoLog
 
vacuum(SQLiteDatabase) - Static method in class de.greenrobot.dao.DbUtils
 
valueOf(String) - Static method in enum de.greenrobot.dao.IdentityScopeType
Returns the enum constant of this type with the specified name.
values() - Static method in enum de.greenrobot.dao.IdentityScopeType
Returns an array containing the constants of this enum type, in the order they are declared.
VERBOSE - Static variable in class de.greenrobot.dao.DaoLog
 

W

w(String) - Static method in class de.greenrobot.dao.DaoLog
 
w(String, Throwable) - Static method in class de.greenrobot.dao.DaoLog
 
w(Throwable) - Static method in class de.greenrobot.dao.DaoLog
 
WARN - Static variable in class de.greenrobot.dao.DaoLog
 
where(WhereCondition, WhereCondition...) - Method in class de.greenrobot.dao.QueryBuilder
Adds the given conditions to the where clause using an logical AND.
WhereCondition - Interface in de.greenrobot.dao
Internal interface to model WHERE conditions used in queries.
WhereCondition.AbstractCondition - Class in de.greenrobot.dao
 
WhereCondition.AbstractCondition() - Constructor for class de.greenrobot.dao.WhereCondition.AbstractCondition
 
WhereCondition.AbstractCondition(Object) - Constructor for class de.greenrobot.dao.WhereCondition.AbstractCondition
 
WhereCondition.AbstractCondition(Object[]) - Constructor for class de.greenrobot.dao.WhereCondition.AbstractCondition
 
WhereCondition.PropertyCondition - Class in de.greenrobot.dao
 
WhereCondition.PropertyCondition(Property, String) - Constructor for class de.greenrobot.dao.WhereCondition.PropertyCondition
 
WhereCondition.PropertyCondition(Property, String, Object) - Constructor for class de.greenrobot.dao.WhereCondition.PropertyCondition
 
WhereCondition.PropertyCondition(Property, String, Object[]) - Constructor for class de.greenrobot.dao.WhereCondition.PropertyCondition
 
WhereCondition.StringCondition - Class in de.greenrobot.dao
 
WhereCondition.StringCondition(String) - Constructor for class de.greenrobot.dao.WhereCondition.StringCondition
 
WhereCondition.StringCondition(String, Object) - Constructor for class de.greenrobot.dao.WhereCondition.StringCondition
 
WhereCondition.StringCondition(String, Object...) - Constructor for class de.greenrobot.dao.WhereCondition.StringCondition
 
whereOr(WhereCondition, WhereCondition, WhereCondition...) - Method in class de.greenrobot.dao.QueryBuilder
Adds the given conditions to the where clause using an logical OR.

A B C D E G I J L N O P Q R S T U V W

Copyright © 2011-2012 greenrobot.de. All Rights Reserved.