Uses of Interface
io.objectbox.query.QueryCondition
-
Packages that use QueryCondition Package Description io.objectbox ObjectBox is an an easy to use, object-oriented lightweight database and a full alternative to SQLite.io.objectbox.query io.objectbox.relation -
-
Uses of QueryCondition in io.objectbox
Methods in io.objectbox with parameters of type QueryCondition Modifier and Type Method Description QueryBuilder<T>Box. query(QueryCondition<T> queryCondition)Applies the given query conditions and returns the builder for further customization, such as result order. -
Uses of QueryCondition in io.objectbox.query
Subinterfaces of QueryCondition in io.objectbox.query Modifier and Type Interface Description interfacePropertyQueryCondition<T>A condition on aProperty, which can have an alias to allow referring to it later.Methods in io.objectbox.query that return QueryCondition Modifier and Type Method Description QueryCondition<T>PropertyQueryCondition. alias(java.lang.String name)Assigns an alias to this condition that can later be used with theQuerysetParameter methods.QueryCondition<T>PropertyQueryConditionImpl. alias(java.lang.String name)QueryCondition<T>QueryCondition. and(QueryCondition<T> queryCondition)Combines this condition using AND with the given condition.QueryCondition<T>QueryConditionImpl. and(QueryCondition<T> queryCondition)QueryCondition<T>QueryCondition. or(QueryCondition<T> queryCondition)Combines this condition using OR with the given condition.QueryCondition<T>QueryConditionImpl. or(QueryCondition<T> queryCondition)Methods in io.objectbox.query with parameters of type QueryCondition Modifier and Type Method Description QueryCondition<T>QueryCondition. and(QueryCondition<T> queryCondition)Combines this condition using AND with the given condition.QueryCondition<T>QueryConditionImpl. and(QueryCondition<T> queryCondition)QueryBuilder<T>QueryBuilder. apply(QueryCondition<T> queryCondition)Applies the given query conditions and returns the builder for further customization, such as result order.QueryCondition<T>QueryCondition. or(QueryCondition<T> queryCondition)Combines this condition using OR with the given condition.QueryCondition<T>QueryConditionImpl. or(QueryCondition<T> queryCondition) -
Uses of QueryCondition in io.objectbox.relation
Methods in io.objectbox.relation that return QueryCondition Modifier and Type Method Description QueryCondition<SOURCE>RelationInfo. relationCount(int relationCount)Creates a condition to match objects that haverelationCountrelated objects pointing to them.
-