Uses of Class
de.greenrobot.dao.QueryBuilder

Packages that use QueryBuilder
de.greenrobot.dao   
 

Uses of QueryBuilder in de.greenrobot.dao
 

Methods in de.greenrobot.dao that return QueryBuilder
<J> QueryBuilder<J>
QueryBuilder.join(java.lang.Class<J> entityClass, Property toOneProperty)
          Not supported yet.
<J> QueryBuilder<J>
QueryBuilder.joinToMany(java.lang.Class<J> entityClass, Property toManyProperty)
          Not supported yet.
 QueryBuilder<T> QueryBuilder.limit(int limit)
          Limits the number of results returned by queries.
 QueryBuilder<T> QueryBuilder.offset(int offset)
          Sets the offset for query results in combination with limit(int).
 QueryBuilder<T> QueryBuilder.orderAsc(Property... properties)
          Adds the given properties to the ORDER BY section using ascending order.
 QueryBuilder<T> QueryBuilder.orderCustom(Property property, java.lang.String customOrderForProperty)
          Adds the given properties to the ORDER BY section using the given custom order.
 QueryBuilder<T> QueryBuilder.orderDesc(Property... properties)
          Adds the given properties to the ORDER BY section using descending order.
 QueryBuilder<T> QueryBuilder.orderRaw(java.lang.String rawOrder)
          Adds the given raw SQL string to the ORDER BY section.
 QueryBuilder<T> AbstractDao.queryBuilder()
           
<T> QueryBuilder<T>
AbstractDaoSession.queryBuilder(java.lang.Class<T> entityClass)
          Convenient call for AbstractDao.queryBuilder().
 QueryBuilder<T> QueryBuilder.where(WhereCondition cond, WhereCondition... condMore)
          Adds the given conditions to the where clause using an logical AND.
 QueryBuilder<T> QueryBuilder.whereOr(WhereCondition cond1, WhereCondition cond2, WhereCondition... condMore)
          Adds the given conditions to the where clause using an logical OR.
 



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