Package | Description |
---|---|
com.hazelcast.client.impl.protocol.task.map |
Client protocol tasks implementations for map
|
com.hazelcast.client.impl.protocol.task.replicatedmap |
Client protocol tasks implementations for ReplicatedMap
|
com.hazelcast.client.proxy |
This package contains client side proxy implementations of the different Hazelcast data structures
and operation types
|
com.hazelcast.client.proxy.txn |
Contains classes related to proxy for client transactions
|
com.hazelcast.client.txn.proxy |
Contains classes related to proxy for com.hazelcast.client.client.txn
|
com.hazelcast.config |
Provides classes for configuring HazelcastInstance.
|
com.hazelcast.core |
Provides core API interfaces/classes.
|
com.hazelcast.map |
Contains Hazelcast map module classes.
|
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.operation |
Package for map operations.
|
com.hazelcast.map.impl.proxy |
Contains map proxy implementation and support classes.
|
com.hazelcast.map.impl.tx |
Contains implementation classes for
TransactionalMap |
com.hazelcast.mapreduce.aggregation |
This package contains the aggregation API and the convenience helper classes
to retrieve predefined aggregation implementations.
|
com.hazelcast.mapreduce.aggregation.impl |
This package contains a set of predefined aggregation implementations
|
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.
|
com.hazelcast.replicatedmap.impl |
This package contains the implementation of the replicated map service itself and some connection interfaces only used
internally - No public API!
|
com.hazelcast.replicatedmap.impl.client |
This package contains classes for client communication on replicated map implementation
|
com.hazelcast.replicatedmap.impl.record |
This package contains the implementation of the backing data storage for the replicated map implementation
|
Modifier and Type | Method and Description |
---|---|
protected Predicate |
MapEntriesWithPagingPredicateMessageTask.getPredicate() |
protected Predicate |
MapEntriesWithPredicateMessageTask.getPredicate() |
protected Predicate |
MapKeySetWithPagingPredicateMessageTask.getPredicate() |
protected abstract Predicate |
AbstractMapQueryMessageTask.getPredicate() |
protected Predicate |
MapKeySetWithPredicateMessageTask.getPredicate() |
protected Predicate |
MapValuesWithPagingPredicateMessageTask.getPredicate() |
protected Predicate |
MapValuesWithPredicateMessageTask.getPredicate() |
Modifier and Type | Method and Description |
---|---|
Predicate |
ReplicatedMapAddEntryListenerMessageTask.getPredicate() |
Predicate |
ReplicatedMapAddEntryListenerToKeyMessageTask.getPredicate() |
abstract Predicate |
AbstractReplicatedMapAddEntryListenerMessageTask.getPredicate() |
Predicate |
ReplicatedMapAddEntryListenerToKeyWithPredicateMessageTask.getPredicate() |
Predicate |
ReplicatedMapAddEntryListenerWithPredicateMessageTask.getPredicate() |
Modifier and Type | Method and Description |
---|---|
String |
ClientReplicatedMapProxy.addEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate) |
String |
ClientReplicatedMapProxy.addEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate,
K key) |
String |
ClientMapProxy.addEntryListener(EntryListener listener,
Predicate<K,V> predicate,
boolean includeValue) |
String |
ClientMapProxy.addEntryListener(EntryListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue) |
String |
ClientMapProxy.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue) |
String |
ClientMapProxy.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue) |
String |
ClientMapProxy.addLocalEntryListener(EntryListener listener,
Predicate<K,V> predicate,
boolean includeValue) |
String |
ClientMapProxy.addLocalEntryListener(EntryListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue) |
String |
ClientMapProxy.addLocalEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue) |
String |
ClientMapProxy.addLocalEntryListener(MapListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue) |
Set<Map.Entry<K,V>> |
ClientMapProxy.entrySet(Predicate predicate) |
Map<K,Object> |
ClientMapProxy.executeOnEntries(EntryProcessor entryProcessor,
Predicate predicate) |
Set<K> |
ClientMapProxy.keySet(Predicate predicate) |
Set<K> |
ClientMapProxy.localKeySet(Predicate predicate) |
Collection<V> |
ClientMapProxy.values(Predicate predicate) |
Modifier and Type | Method and Description |
---|---|
Set<K> |
ClientTxnMapProxy.keySet(Predicate predicate) |
Collection<V> |
ClientTxnMapProxy.values(Predicate predicate) |
Modifier and Type | Method and Description |
---|---|
Set<K> |
ClientTxnMapProxy.keySet(Predicate predicate) |
Collection<V> |
ClientTxnMapProxy.values(Predicate predicate) |
Modifier and Type | Field and Description |
---|---|
protected Predicate |
PredicateConfig.implementation |
Modifier and Type | Method and Description |
---|---|
Predicate |
PredicateConfig.getImplementation()
Returns the Predicate implementation.
|
Modifier and Type | Method and Description |
---|---|
PredicateConfig |
PredicateConfig.setImplementation(Predicate implementation)
Sets the Predicate implementation.
|
Constructor and Description |
---|
PredicateConfig(Predicate implementation)
Creates a PredicateConfig with the given implementation.
|
Modifier and Type | Method and Description |
---|---|
String |
ReplicatedMap.addEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate)
Adds an continuous entry listener for this map.
|
String |
ReplicatedMap.addEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate,
K key)
Adds an continuous entry listener for this map.
|
String |
IMap.addEntryListener(EntryListener listener,
Predicate<K,V> predicate,
boolean includeValue)
Deprecated.
|
String |
IMap.addEntryListener(EntryListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue)
Deprecated.
|
String |
IMap.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue)
Adds a
MapListener for this map. |
String |
IMap.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue)
Adds a
MapListener for this map. |
String |
IMap.addLocalEntryListener(EntryListener listener,
Predicate<K,V> predicate,
boolean includeValue)
|
String |
IMap.addLocalEntryListener(EntryListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue)
Deprecated.
|
String |
IMap.addLocalEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue)
Adds a
MapListener for this map. |
String |
IMap.addLocalEntryListener(MapListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue)
Adds a local entry listener for this map.
|
Set<Map.Entry<K,V>> |
IMap.entrySet(Predicate predicate)
Queries the map based on the specified predicate and
returns the matching entries.
|
Map<K,Object> |
IMap.executeOnEntries(EntryProcessor entryProcessor,
Predicate predicate)
Applies the user defined EntryProcessor to the entries in the map which satisfies provided predicate.
|
Set<K> |
IMap.keySet(Predicate predicate)
Queries the map based on the specified predicate and
returns the keys of matching entries.
|
Set<K> |
TransactionalMap.keySet(Predicate predicate)
Transactional implementation of
IMap.keySet(com.hazelcast.query.Predicate) . |
Set<K> |
IMap.localKeySet(Predicate predicate)
Returns the keys of matching locally owned entries.
|
Collection<V> |
IMap.values(Predicate predicate)
Queries the map based on the specified predicate and
returns the values of matching entries.
|
Collection<V> |
TransactionalMap.values(Predicate predicate)
Transactional implementation of
IMap.values(com.hazelcast.query.Predicate) . |
Modifier and Type | Method and Description |
---|---|
String |
QueryCache.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue) |
String |
QueryCache.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue) |
Set<Map.Entry<K,V>> |
QueryCache.entrySet(Predicate predicate) |
Set<K> |
QueryCache.keySet(Predicate predicate) |
Collection<V> |
QueryCache.values(Predicate predicate) |
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.
|
Collection<QueryableEntry> |
MapContextQuerySupport.queryOnPartition(String mapName,
Predicate predicate,
int partitionId)
Query a specific partition.
|
Constructor and Description |
---|
QueryEventFilter(boolean includeValue,
Data key,
Predicate predicate) |
Modifier and Type | Method and Description |
---|---|
protected Predicate |
MapSQLQueryRequest.getPredicate() |
protected abstract Predicate |
AbstractTxnMapRequest.getPredicate() |
protected abstract Predicate |
AbstractMapAddEntryListenerRequest.getPredicate() |
protected Predicate |
MapAddEntryListenerSqlRequest.getPredicate() |
protected Predicate |
MapQueryRequest.getPredicate() |
protected Predicate |
MapAddEntryListenerRequest.getPredicate() |
protected Predicate |
TxnMapRequestWithSQLQuery.getPredicate() |
protected Predicate |
TxnMapRequest.getPredicate() |
Constructor and Description |
---|
MapAddEntryListenerRequest(String name,
Data key,
boolean includeValue,
Predicate predicate) |
MapExecuteWithPredicateRequest(String name,
EntryProcessor processor,
Predicate predicate) |
MapQueryRequest(String name,
Predicate predicate,
IterationType iterationType) |
TxnMapRequest(String name,
AbstractTxnMapRequest.TxnMapRequestType requestType,
Predicate predicate) |
Modifier and Type | Method and Description |
---|---|
protected Predicate |
PartitionWideEntryBackupOperation.getPredicate() |
protected Predicate |
PartitionWideEntryWithPredicateOperation.getPredicate() |
protected Predicate |
PartitionWideEntryOperation.getPredicate() |
protected Predicate |
PartitionWideEntryWithPredicateBackupOperation.getPredicate() |
Constructor and Description |
---|
PartitionWideEntryWithPredicateBackupOperation(String name,
EntryBackupProcessor entryProcessor,
Predicate predicate) |
PartitionWideEntryWithPredicateOperation(String name,
EntryProcessor entryProcessor,
Predicate predicate) |
PartitionWideEntryWithPredicateOperationFactory(String name,
EntryProcessor entryProcessor,
Predicate predicate) |
QueryOperation(String mapName,
Predicate predicate) |
QueryPartitionOperation(String mapName,
Predicate predicate) |
Modifier and Type | Method and Description |
---|---|
String |
MapProxyImpl.addEntryListener(EntryListener listener,
Predicate<K,V> predicate,
boolean includeValue) |
String |
MapProxyImpl.addEntryListener(EntryListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue) |
String |
MapProxyImpl.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue) |
String |
MapProxyImpl.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue) |
String |
MapProxyImpl.addLocalEntryListener(EntryListener listener,
Predicate<K,V> predicate,
boolean includeValue) |
String |
MapProxyImpl.addLocalEntryListener(EntryListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue) |
String |
MapProxyImpl.addLocalEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue) |
String |
MapProxyImpl.addLocalEntryListener(MapListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue) |
Set |
MapProxyImpl.entrySet(Predicate predicate) |
Set<K> |
MapProxyImpl.keySet(Predicate predicate) |
Set<K> |
MapProxyImpl.localKeySet(Predicate predicate) |
Collection<V> |
MapProxyImpl.values(Predicate predicate) |
Modifier and Type | Method and Description |
---|---|
Set |
TransactionalMapProxy.keySet(Predicate predicate) |
protected Set |
TransactionalMapProxySupport.queryInternal(Predicate predicate,
IterationType iterationType,
boolean dataResult) |
Collection |
TransactionalMapProxy.values(Predicate predicate) |
Modifier and Type | Method and Description |
---|---|
static <KeyIn,ValueIn,ValueOut> |
Supplier.fromPredicate(Predicate<KeyIn,ValueIn> predicate)
The predefined Supplier selects values using the given
Predicate
and does not perform any kind of data transformation. |
static <KeyIn,ValueIn,ValueOut> |
Supplier.fromPredicate(Predicate<KeyIn,ValueIn> predicate,
Supplier<KeyIn,ValueIn,ValueOut> chainedSupplier)
The predefined Supplier selects values using the given
Predicate
and chains the filtered value to the given Supplier which might perform data transformation. |
Constructor and Description |
---|
PredicateSupplier(Predicate<KeyIn,ValueIn> predicate) |
PredicateSupplier(Predicate<KeyIn,ValueIn> predicate,
Supplier<KeyIn,ValueIn,ValueOut> chainedSupplier) |
Modifier and Type | Interface and Description |
---|---|
interface |
IndexAwarePredicate
This interface is used for create filterable Predicates.
|
Modifier and Type | Class and Description |
---|---|
class |
PagingPredicate
This class is a special Predicate which helps to get a page-by-page result of a query.
|
class |
PredicateBuilder
This class provides functionality to build predicate.
|
static class |
Predicates.AbstractPredicate
Provides some functionality for some predicates
such as Between, In.
|
static class |
Predicates.AndPredicate
And Predicate
|
static class |
Predicates.BetweenPredicate
Between Predicate
|
static class |
Predicates.EqualPredicate
Equal Predicate
|
static class |
Predicates.GreaterLessPredicate
Greater Less Predicate
|
static class |
Predicates.ILikePredicate
Ilike Predicate
|
static class |
Predicates.InPredicate
In Predicate
|
static class |
Predicates.LikePredicate
Like Predicate
|
static class |
Predicates.NotEqualPredicate
Not Equal Predicate
|
static class |
Predicates.NotPredicate
Not Predicate
|
static class |
Predicates.OrPredicate
Or Predicate
|
static class |
Predicates.RegexPredicate
Regex Predicate
|
class |
SqlPredicate
This class contains methods related to conversion of sql query to predicate.
|
class |
TruePredicate
A
Predicate which always returns true. |
Modifier and Type | Field and Description |
---|---|
protected Predicate[] |
Predicates.AndPredicate.predicates |
Modifier and Type | Method and Description |
---|---|
static Predicate |
Predicates.and(Predicate... predicates) |
static Predicate |
Predicates.between(String attribute,
Comparable from,
Comparable to) |
static Predicate |
Predicates.equal(String attribute,
Comparable y) |
Predicate |
PagingPredicate.getPredicate() |
static Predicate |
Predicates.greaterEqual(String x,
Comparable y) |
static Predicate |
Predicates.greaterThan(String x,
Comparable y) |
static Predicate |
Predicates.ilike(String attribute,
String pattern) |
static Predicate |
Predicates.in(String attribute,
Comparable... values) |
static Predicate |
Predicates.instanceOf(Class klass) |
static Predicate |
Predicates.lessEqual(String x,
Comparable y) |
static Predicate |
Predicates.lessThan(String x,
Comparable y) |
static Predicate |
Predicates.like(String attribute,
String pattern) |
static Predicate |
Predicates.not(Predicate predicate) |
static Predicate |
Predicates.notEqual(String attribute,
Comparable y) |
static Predicate |
Predicates.or(Predicate... predicates)
Or predicate
|
static Predicate |
Predicates.regex(String attribute,
String pattern) |
Modifier and Type | Method and Description |
---|---|
static Predicate |
Predicates.and(Predicate... predicates) |
PredicateBuilder |
PredicateBuilder.and(Predicate predicate) |
static Predicate |
Predicates.not(Predicate predicate) |
static Predicate |
Predicates.or(Predicate... predicates)
Or predicate
|
PredicateBuilder |
PredicateBuilder.or(Predicate predicate) |
Constructor and Description |
---|
PagingPredicate(Predicate predicate,
Comparator<Map.Entry> comparator,
int pageSize)
Construct with an inner predicate, comparator and pageSize
results will be filtered via inner predicate
results will be ordered via comparator
throws
IllegalArgumentException if pageSize is not greater than 0
throws IllegalArgumentException if inner predicate is also PagingPredicate |
PagingPredicate(Predicate predicate,
int pageSize)
Construct with an inner predicate and pageSize
results will be filtered via inner predicate
results will be natural ordered
throws
IllegalArgumentException if pageSize is not greater than 0
throws IllegalArgumentException if inner predicate is also PagingPredicate |
Predicates.AndPredicate(Predicate... predicates) |
Predicates.NotPredicate(Predicate predicate) |
Predicates.OrPredicate(Predicate... predicates) |
Modifier and Type | Method and Description |
---|---|
Set<QueryableEntry> |
IndexService.query(Predicate predicate) |
Constructor and Description |
---|
AndResultSet(Set<QueryableEntry> setSmallest,
List<Set<QueryableEntry>> otherIndexedResults,
List<Predicate> lsNoIndexPredicates) |
Modifier and Type | Method and Description |
---|---|
String |
ReplicatedMapProxy.addEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate) |
String |
ReplicatedMapProxy.addEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate,
K key) |
Constructor and Description |
---|
ClientReplicatedMapAddEntryListenerRequest(String mapName,
Predicate predicate,
Object key) |
Modifier and Type | Method and Description |
---|---|
String |
AbstractReplicatedRecordStore.addEntryListener(EntryListener listener,
Predicate predicate,
Object key) |
String |
ReplicatedRecordStore.addEntryListener(EntryListener listener,
Predicate predicate,
Object key) |
Constructor and Description |
---|
ReplicatedQueryEventFilter(Object key,
Predicate predicate) |
Copyright © 2015 Hazelcast, Inc.. All Rights Reserved.