Package | Description |
---|---|
com.hazelcast.map.impl |
Contains implementation specific classes of
com.hazelcast.map package. |
com.hazelcast.query |
Contains interfaces/classes related to Hazelcast query and indexing support.
|
com.hazelcast.query.impl |
Contains the implementation classes of the query functionality.
|
Modifier and Type | Method and Description |
---|---|
Collection<QueryableEntry> |
MapContextQuerySupport.queryOnPartition(String mapName,
Predicate predicate,
int partitionId)
Query a specific partition.
|
Modifier and Type | Method and Description |
---|---|
void |
QueryResult.addAll(Collection<QueryableEntry> queryableEntries) |
Modifier and Type | Method and Description |
---|---|
Set<QueryableEntry> |
Predicates.BetweenPredicate.filter(QueryContext queryContext) |
Set<QueryableEntry> |
Predicates.InPredicate.filter(QueryContext queryContext) |
Set<QueryableEntry> |
Predicates.AndPredicate.filter(QueryContext queryContext) |
Set<QueryableEntry> |
Predicates.OrPredicate.filter(QueryContext queryContext) |
Set<QueryableEntry> |
Predicates.GreaterLessPredicate.filter(QueryContext queryContext) |
Set<QueryableEntry> |
Predicates.NotEqualPredicate.filter(QueryContext queryContext) |
Set<QueryableEntry> |
Predicates.EqualPredicate.filter(QueryContext queryContext) |
Set<QueryableEntry> |
PagingPredicate.filter(QueryContext queryContext)
Used if inner predicate is instanceof
IndexAwarePredicate for filtering. |
Set<QueryableEntry> |
IndexAwarePredicate.filter(QueryContext queryContext) |
Set<QueryableEntry> |
PredicateBuilder.filter(QueryContext queryContext) |
Set<QueryableEntry> |
SqlPredicate.filter(QueryContext queryContext) |
Modifier and Type | Class and Description |
---|---|
class |
QueryEntry
Entry of the Query.
|
Modifier and Type | Method and Description |
---|---|
boolean |
MultiResultSet.add(QueryableEntry obj) |
void |
UnsortedIndexStore.newIndex(Comparable newValue,
QueryableEntry record) |
void |
IndexStore.newIndex(Comparable newValue,
QueryableEntry entry) |
void |
SortedIndexStore.newIndex(Comparable newValue,
QueryableEntry record) |
void |
IndexService.saveEntryIndex(QueryableEntry queryableEntry) |
void |
Index.saveEntryIndex(QueryableEntry e) |
void |
IndexImpl.saveEntryIndex(QueryableEntry e) |
void |
UnsortedIndexStore.updateIndex(Comparable oldValue,
Comparable newValue,
QueryableEntry entry) |
void |
IndexStore.updateIndex(Comparable oldValue,
Comparable newValue,
QueryableEntry entry) |
void |
SortedIndexStore.updateIndex(Comparable oldValue,
Comparable newValue,
QueryableEntry entry) |
Modifier and Type | Method and Description |
---|---|
void |
MultiResultSet.addResultSet(ConcurrentMap<Data,QueryableEntry> resultSet) |
Constructor and Description |
---|
AndResultSet(Set<QueryableEntry> setSmallest,
List<Set<QueryableEntry>> otherIndexedResults,
List<Predicate> lsNoIndexPredicates) |
AndResultSet(Set<QueryableEntry> setSmallest,
List<Set<QueryableEntry>> otherIndexedResults,
List<Predicate> lsNoIndexPredicates) |
OrResultSet(List<Set<QueryableEntry>> indexedResults) |
SingleResultSet(ConcurrentMap<Data,QueryableEntry> records) |
Copyright © 2015 Hazelcast, Inc.. All Rights Reserved.