|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Predicate | |
---|---|
com.hazelcast.client.proxy | This package contains client side proxy implementations of the different Hazelcast data structures and operation types |
com.hazelcast.client.txn.proxy | Contains classes related to proxy for com.hazelcast.client.client.txn |
com.hazelcast.core | Provides core API interfaces/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 |
com.hazelcast.web | Provides Hazelcast-based session replication. |
Uses of Predicate in com.hazelcast.client.proxy |
---|
Methods in com.hazelcast.client.proxy with parameters of type Predicate | |
---|---|
String |
ClientReplicatedMapProxy.addEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate)
|
String |
ClientMapProxy.addEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate,
boolean includeValue)
|
String |
ClientReplicatedMapProxy.addEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate,
K key)
|
String |
ClientMapProxy.addEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate,
K key,
boolean includeValue)
|
String |
ClientMapProxy.addLocalEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate,
boolean includeValue)
|
String |
ClientMapProxy.addLocalEntryListener(EntryListener<K,V> 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)
|
Uses of Predicate in com.hazelcast.client.txn.proxy |
---|
Methods in com.hazelcast.client.txn.proxy with parameters of type Predicate | |
---|---|
Set<K> |
ClientTxnMapProxy.keySet(Predicate predicate)
|
Collection<V> |
ClientTxnMapProxy.values(Predicate predicate)
|
Uses of Predicate in com.hazelcast.core |
---|
Methods in com.hazelcast.core with parameters of type Predicate | |
---|---|
String |
ReplicatedMap.addEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate)
Adds an continuous entry listener for this map. |
String |
IMap.addEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate,
boolean includeValue)
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<K,V> listener,
Predicate<K,V> predicate,
K key,
boolean includeValue)
Adds an continuous entry listener for this map. |
String |
IMap.addLocalEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate,
boolean includeValue)
Adds a local entry listener for this map. |
String |
IMap.addLocalEntryListener(EntryListener<K,V> 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) . |
Uses of Predicate in com.hazelcast.map.impl |
---|
Methods in com.hazelcast.map.impl with parameters of type Predicate | |
---|---|
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. |
Constructors in com.hazelcast.map.impl with parameters of type Predicate | |
---|---|
QueryEventFilter(boolean includeValue,
Data key,
Predicate predicate)
|
Uses of Predicate in com.hazelcast.map.impl.client |
---|
Methods in com.hazelcast.map.impl.client that return Predicate | |
---|---|
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()
|
Constructors in com.hazelcast.map.impl.client with parameters of type Predicate | |
---|---|
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)
|
Uses of Predicate in com.hazelcast.map.impl.operation |
---|
Methods in com.hazelcast.map.impl.operation that return Predicate | |
---|---|
protected Predicate |
PartitionWideEntryBackupOperation.getPredicate()
|
protected Predicate |
PartitionWideEntryWithPredicateOperation.getPredicate()
|
protected Predicate |
PartitionWideEntryOperation.getPredicate()
|
protected Predicate |
PartitionWideEntryWithPredicateBackupOperation.getPredicate()
|
Constructors in com.hazelcast.map.impl.operation with parameters of type Predicate | |
---|---|
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)
|
Uses of Predicate in com.hazelcast.map.impl.proxy |
---|
Methods in com.hazelcast.map.impl.proxy with parameters of type Predicate | |
---|---|
String |
MapProxyImpl.addEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate,
boolean includeValue)
|
String |
MapProxyImpl.addEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate,
K key,
boolean includeValue)
|
String |
MapProxyImpl.addLocalEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate,
boolean includeValue)
|
String |
MapProxyImpl.addLocalEntryListener(EntryListener<K,V> 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)
|
Uses of Predicate in com.hazelcast.map.impl.tx |
---|
Methods in com.hazelcast.map.impl.tx with parameters of type Predicate | |
---|---|
Set |
TransactionalMapProxy.keySet(Predicate predicate)
|
protected Set |
TransactionalMapProxySupport.queryInternal(Predicate predicate,
IterationType iterationType,
boolean dataResult)
|
Collection |
TransactionalMapProxy.values(Predicate predicate)
|
Uses of Predicate in com.hazelcast.mapreduce.aggregation |
---|
Methods in com.hazelcast.mapreduce.aggregation with parameters of type Predicate | ||
---|---|---|
static
|
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
|
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. |
Uses of Predicate in com.hazelcast.mapreduce.aggregation.impl |
---|
Constructors in com.hazelcast.mapreduce.aggregation.impl with parameters of type Predicate | |
---|---|
PredicateSupplier(Predicate<KeyIn,ValueIn> predicate)
|
|
PredicateSupplier(Predicate<KeyIn,ValueIn> predicate,
Supplier<KeyIn,ValueIn,ValueOut> chainedSupplier)
|
Uses of Predicate in com.hazelcast.query |
---|
Subinterfaces of Predicate in com.hazelcast.query | |
---|---|
interface |
IndexAwarePredicate
This interface using for create filterable Predicates. |
Classes in com.hazelcast.query that implement Predicate | |
---|---|
class |
PagingPredicate
This class is a special Predicate which helps to get a page-by-page result of a query Can be constructed with a page-size, an inner predicate for filtering, A comparator for sorting \ This class is not thread-safe and stateless. |
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. |
Fields in com.hazelcast.query declared as Predicate | |
---|---|
protected Predicate[] |
Predicates.AndPredicate.predicates
|
Methods in com.hazelcast.query that return Predicate | |
---|---|
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)
|
Methods in com.hazelcast.query with parameters of type Predicate | |
---|---|
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)
|
Constructors in com.hazelcast.query with parameters of type Predicate | |
---|---|
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)
|
Uses of Predicate in com.hazelcast.query.impl |
---|
Methods in com.hazelcast.query.impl with parameters of type Predicate | |
---|---|
Set<QueryableEntry> |
IndexService.query(Predicate predicate)
|
Constructor parameters in com.hazelcast.query.impl with type arguments of type Predicate | |
---|---|
AndResultSet(Set<QueryableEntry> setSmallest,
List<Set<QueryableEntry>> otherIndexedResults,
List<Predicate> lsNoIndexPredicates)
|
Uses of Predicate in com.hazelcast.replicatedmap.impl |
---|
Methods in com.hazelcast.replicatedmap.impl with parameters of type Predicate | |
---|---|
String |
ReplicatedMapProxy.addEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate)
|
String |
ReplicatedMapProxy.addEntryListener(EntryListener<K,V> listener,
Predicate<K,V> predicate,
K key)
|
Uses of Predicate in com.hazelcast.replicatedmap.impl.client |
---|
Constructors in com.hazelcast.replicatedmap.impl.client with parameters of type Predicate | |
---|---|
ClientReplicatedMapAddEntryListenerRequest(String mapName,
Predicate predicate,
Object key)
|
Uses of Predicate in com.hazelcast.replicatedmap.impl.record |
---|
Methods in com.hazelcast.replicatedmap.impl.record with parameters of type Predicate | |
---|---|
String |
AbstractReplicatedRecordStore.addEntryListener(EntryListener listener,
Predicate predicate,
Object key)
|
String |
ReplicatedRecordStore.addEntryListener(EntryListener listener,
Predicate predicate,
Object key)
|
Constructors in com.hazelcast.replicatedmap.impl.record with parameters of type Predicate | |
---|---|
ReplicatedQueryEventFilter(Object key,
Predicate predicate)
|
Uses of Predicate in com.hazelcast.web |
---|
Classes in com.hazelcast.web that implement Predicate | |
---|---|
class |
SessionAttributePredicate
Filters map entries to retrieve only the ones that belong to a specific session. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |