Package io.objectbox.query
Interface PropertyQueryCondition<T>
-
- All Superinterfaces:
QueryCondition<T>
- All Known Implementing Classes:
PropertyQueryConditionImpl
,PropertyQueryConditionImpl.ByteArrayCondition
,PropertyQueryConditionImpl.DoubleCondition
,PropertyQueryConditionImpl.DoubleDoubleCondition
,PropertyQueryConditionImpl.IntArrayCondition
,PropertyQueryConditionImpl.LongArrayCondition
,PropertyQueryConditionImpl.LongCondition
,PropertyQueryConditionImpl.LongLongCondition
,PropertyQueryConditionImpl.NearestNeighborCondition
,PropertyQueryConditionImpl.NullCondition
,PropertyQueryConditionImpl.StringArrayCondition
,PropertyQueryConditionImpl.StringCondition
,PropertyQueryConditionImpl.StringStringCondition
public interface PropertyQueryCondition<T> extends QueryCondition<T>
A condition on aProperty
, which can have an alias to allow referring to it later.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueryCondition<T>
alias(java.lang.String name)
Assigns an alias to this condition that can later be used with theQuery
setParameter methods.-
Methods inherited from interface io.objectbox.query.QueryCondition
and, or
-
-
-
-
Method Detail
-
alias
QueryCondition<T> alias(java.lang.String name)
Assigns an alias to this condition that can later be used with theQuery
setParameter methods.
-
-