|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use WhereCondition | |
---|---|
de.greenrobot.dao |
Uses of WhereCondition in de.greenrobot.dao |
---|
Classes in de.greenrobot.dao that implement WhereCondition | |
---|---|
static class |
WhereCondition.AbstractCondition
|
static class |
WhereCondition.PropertyCondition
|
static class |
WhereCondition.StringCondition
|
Methods in de.greenrobot.dao that return WhereCondition | |
---|---|
WhereCondition |
QueryBuilder.and(WhereCondition cond1,
WhereCondition cond2,
WhereCondition... condMore)
|
WhereCondition |
Property.between(java.lang.Object value1,
java.lang.Object value2)
Creates an "BETWEEN ... |
WhereCondition |
Property.eq(java.lang.Object value)
Creates an "equal ('=')" condition for this property. |
WhereCondition |
Property.ge(java.lang.Object value)
Creates an "greater or equal ('>=')" condition for this property. |
WhereCondition |
Property.gt(java.lang.Object value)
Creates an "greater than ('>')" condition for this property. |
WhereCondition |
Property.in(java.util.Collection<?> inValues)
Creates an "IN (..., ..., ...)" condition for this property. |
WhereCondition |
Property.in(java.lang.Object... inValues)
Creates an "IN (..., ..., ...)" condition for this property. |
WhereCondition |
Property.isNotNull()
Creates an "IS NOT NULL" condition for this property. |
WhereCondition |
Property.isNull()
Creates an "IS NULL" condition for this property. |
WhereCondition |
Property.le(java.lang.Object value)
Creates an "less or equal ('<=')" condition for this property. |
WhereCondition |
Property.like(java.lang.String value)
Creates an "LIKE" condition for this property. |
WhereCondition |
Property.lt(java.lang.Object value)
Creates an "less than ('<')" condition for this property. |
WhereCondition |
Property.notEq(java.lang.Object value)
Creates an "not equal ('<>')" condition for this property. |
WhereCondition |
QueryBuilder.or(WhereCondition cond1,
WhereCondition cond2,
WhereCondition... condMore)
|
Methods in de.greenrobot.dao with parameters of type WhereCondition | |
---|---|
WhereCondition |
QueryBuilder.and(WhereCondition cond1,
WhereCondition cond2,
WhereCondition... condMore)
|
WhereCondition |
QueryBuilder.and(WhereCondition cond1,
WhereCondition cond2,
WhereCondition... condMore)
|
WhereCondition |
QueryBuilder.or(WhereCondition cond1,
WhereCondition cond2,
WhereCondition... condMore)
|
WhereCondition |
QueryBuilder.or(WhereCondition cond1,
WhereCondition cond2,
WhereCondition... condMore)
|
QueryBuilder<T> |
QueryBuilder.where(WhereCondition cond,
WhereCondition... condMore)
Adds the given conditions to the where clause using an logical AND. |
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. |
QueryBuilder<T> |
QueryBuilder.whereOr(WhereCondition cond1,
WhereCondition cond2,
WhereCondition... condMore)
Adds the given conditions to the where clause using an logical OR. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |