Package | Description |
---|---|
com.hazelcast.map.impl |
Contains implementation specific classes of
com.hazelcast.map package. |
com.hazelcast.map.impl.client |
Contains client requests for the
IMap |
com.hazelcast.map.impl.tx |
Contains implementation classes for
TransactionalMap |
com.hazelcast.query |
Contains interfaces/classes related to Hazelcast query and indexing support.
|
com.hazelcast.util |
This package contains classes to support the inner workings of Hazelcast
as well as some backports of newer Java features / data structures to
support older Java versions in a clean and nice way.
|
Modifier and Type | Method and Description |
---|---|
Set |
MapContextQuerySupport.query(String mapName,
Predicate predicate,
IterationType iterationType,
boolean dataResult)
Used for predicates which queries on all members, except paging predicate.
|
Set |
MapContextQuerySupport.queryLocalMember(String mapName,
Predicate predicate,
IterationType iterationType,
boolean dataResult)
Used for predicates which queries on node local entries, except paging predicate.
|
Set |
MapContextQuerySupport.queryLocalMemberWithPagingPredicate(String mapName,
PagingPredicate pagingPredicate,
IterationType iterationType)
Used for paging predicate queries on node local entries.
|
Set |
MapContextQuerySupport.queryWithPagingPredicate(String mapName,
PagingPredicate pagingPredicate,
IterationType iterationType)
Used for paging predicate queries on all members.
|
Constructor and Description |
---|
MapQueryRequest(String name,
Predicate predicate,
IterationType iterationType) |
MapSQLQueryRequest(String name,
String sql,
IterationType iterationType) |
Modifier and Type | Method and Description |
---|---|
protected Set |
TransactionalMapProxySupport.queryInternal(Predicate predicate,
IterationType iterationType,
boolean dataResult) |
Modifier and Type | Method and Description |
---|---|
IterationType |
PagingPredicate.getIterationType() |
Modifier and Type | Method and Description |
---|---|
void |
PagingPredicate.setIterationType(IterationType iterationType) |
Modifier and Type | Method and Description |
---|---|
static IterationType |
IterationType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IterationType[] |
IterationType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static int |
SortingUtil.compare(Comparator<Map.Entry> comparator,
IterationType iterationType,
Map.Entry entry1,
Map.Entry entry2) |
static boolean |
SortingUtil.isSuitableForCompare(Comparator<Map.Entry> comparator,
IterationType iterationType,
Map.Entry entry) |
static Comparator<Map.Entry> |
SortingUtil.newComparator(Comparator<Map.Entry> comparator,
IterationType iterationType) |
Constructor and Description |
---|
QueryResultSet(SerializationService serializationService,
IterationType iterationType,
boolean data) |
SortedQueryResultSet(Comparator comparator,
IterationType iterationType,
int pageSize) |
Copyright © 2014 Hazelcast, Inc.. All Rights Reserved.