Uses of Interface
io.objectbox.query.QueryCondition
Packages that use QueryCondition
Package
Description
ObjectBox is an an easy to use, object-oriented lightweight database and a full alternative to SQLite.
-
Uses of QueryCondition in io.objectbox
Methods in io.objectbox with parameters of type QueryConditionModifier and TypeMethodDescriptionBox.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.queryModifier and TypeInterfaceDescriptioninterfaceA condition on aProperty, which can have an alias to allow referring to it later.Classes in io.objectbox.query that implement QueryConditionModifier and TypeClassDescription(package private) classLogic based query conditions, currentlyLogicQueryCondition.AndConditionandLogicQueryCondition.OrCondition.(package private) static classCombines the left condition using AND with the right condition.(package private) static classCombines the left condition using OR with the right condition.classPropertybased query conditions with implementations split by number and type of values, such asLongCondition,LongLongCondition,LongArrayConditionand the generalNullCondition.static classstatic classstatic classstatic classstatic classstatic classstatic classstatic classConditions for properties with anHnswIndex.static classstatic classstatic classstatic class(package private) classHides theQueryConditionImpl.apply(QueryBuilder)method from the public API (QueryCondition).classMethods in io.objectbox.query that return QueryConditionModifier and TypeMethodDescriptionAssigns an alias to this condition that can later be used with theQuerysetParameter methods.QueryCondition.and(QueryCondition<T> queryCondition) Combines this condition using AND with the given condition.QueryConditionImpl.and(QueryCondition<T> queryCondition) QueryCondition.or(QueryCondition<T> queryCondition) Combines this condition using OR with the given condition.QueryConditionImpl.or(QueryCondition<T> queryCondition) Methods in io.objectbox.query with parameters of type QueryConditionModifier and TypeMethodDescriptionQueryCondition.and(QueryCondition<T> queryCondition) Combines this condition using AND with the given condition.QueryConditionImpl.and(QueryCondition<T> queryCondition) QueryBuilder.apply(QueryCondition<T> queryCondition) Applies the given query conditions and returns the builder for further customization, such as result order.QueryCondition.or(QueryCondition<T> queryCondition) Combines this condition using OR with the given condition.QueryConditionImpl.or(QueryCondition<T> queryCondition) -
Uses of QueryCondition in io.objectbox.relation
Methods in io.objectbox.relation that return QueryConditionModifier and TypeMethodDescriptionRelationInfo.relationCount(int relationCount) Creates a condition to match objects that haverelationCountrelated objects pointing to them.