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.org.apache.ignite.internal.cache.query org.apache.ignite.internal.processors.cache.query -
-
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 IndexQueryCriterionIndexQueryCriteriaBuilder. between(String field, Object lower, Object upper)Between.static IndexQueryCriterionIndexQueryCriteriaBuilder. eq(String field, Object val)Equal To.static IndexQueryCriterionIndexQueryCriteriaBuilder. gt(String field, Object val)Greater Then.static IndexQueryCriterionIndexQueryCriteriaBuilder. gte(String field, Object val)Greater Then or Equal To.static IndexQueryCriterionIndexQueryCriteriaBuilder. in(String field, Collection<?> vals)In.static IndexQueryCriterionIndexQueryCriteriaBuilder. lt(String field, Object val)Less Then.static IndexQueryCriterionIndexQueryCriteriaBuilder. 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. -
Uses of IndexQueryCriterion in org.apache.ignite.internal.cache.query
Classes in org.apache.ignite.internal.cache.query that implement IndexQueryCriterion Modifier and Type Class Description classInIndexQueryCriterionCriterion for IN operator.classRangeIndexQueryCriterionRange index criterion that applies to BPlusTree based indexes. -
Uses of IndexQueryCriterion in org.apache.ignite.internal.processors.cache.query
Methods in org.apache.ignite.internal.processors.cache.query that return types with arguments of type IndexQueryCriterion Modifier and Type Method Description List<IndexQueryCriterion>IndexQueryDesc. criteria()Constructor parameters in org.apache.ignite.internal.processors.cache.query with type arguments of type IndexQueryCriterion Constructor Description IndexQueryDesc(List<IndexQueryCriterion> criteria, String idxName, String valType)
-