Package io.objectbox.query
Class QueryConditionImpl<T>
java.lang.Object
io.objectbox.query.QueryConditionImpl<T>
- All Implemented Interfaces:
QueryCondition<T>
- Direct Known Subclasses:
LogicQueryCondition,PropertyQueryConditionImpl,RelationCountCondition
Hides the
apply(QueryBuilder) method from the public API (QueryCondition).-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionand(QueryCondition<T> queryCondition) Combines this condition using AND with the given condition.(package private) abstract voidapply(QueryBuilder<T> builder) or(QueryCondition<T> queryCondition) Combines this condition using OR with the given condition.
-
Constructor Details
-
QueryConditionImpl
QueryConditionImpl()
-
-
Method Details
-
and
Description copied from interface:QueryConditionCombines this condition using AND with the given condition.- Specified by:
andin interfaceQueryCondition<T>- See Also:
-
or
Description copied from interface:QueryConditionCombines this condition using OR with the given condition.- Specified by:
orin interfaceQueryCondition<T>- See Also:
-
apply
-