Uses of Interface
org.apache.ignite.cache.query.IndexQueryCriterion
-
Packages that use IndexQueryCriterion Package Description org.apache.ignite.cache.query Contains APIs for creating and executing cache queries. -
-
Uses of IndexQueryCriterion in org.apache.ignite.cache.query
Methods in org.apache.ignite.cache.query that return IndexQueryCriterion Modifier and Type Method Description static IndexQueryCriterion
IndexQueryCriteriaBuilder. between(String field, Object lower, Object upper)
Between.static IndexQueryCriterion
IndexQueryCriteriaBuilder. eq(String field, Object val)
Equal To.static IndexQueryCriterion
IndexQueryCriteriaBuilder. gt(String field, Object val)
Greater Then.static IndexQueryCriterion
IndexQueryCriteriaBuilder. gte(String field, Object val)
Greater Then or Equal To.static IndexQueryCriterion
IndexQueryCriteriaBuilder. in(String field, Collection<?> vals)
In.static IndexQueryCriterion
IndexQueryCriteriaBuilder. lt(String field, Object val)
Less Then.static IndexQueryCriterion
IndexQueryCriteriaBuilder. lte(String field, Object val)
Less Then or Equal To.Methods in org.apache.ignite.cache.query that return types with arguments of type IndexQueryCriterion Modifier and Type Method Description List<IndexQueryCriterion>
IndexQuery. getCriteria()
Index query criteria.Methods in org.apache.ignite.cache.query with parameters of type IndexQueryCriterion Modifier and Type Method Description IndexQuery<K,V>
IndexQuery. setCriteria(IndexQueryCriterion... criteria)
Sets conjunction (AND) criteria for index query.Method parameters in org.apache.ignite.cache.query with type arguments of type IndexQueryCriterion Modifier and Type Method Description IndexQuery<K,V>
IndexQuery. setCriteria(List<IndexQueryCriterion> criteria)
Sets conjunction (AND) criteria for index query.
-