| Package | Description | 
|---|---|
| com.hazelcast.core | 
 Provides core API interfaces/classes. 
 | 
| com.hazelcast.query | 
 Contains interfaces/classes related to Hazelcast query and indexing support. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
IMap.addEntryListener(EntryListener<K,V> listener,
                Predicate<K,V> predicate,
                boolean includeValue)
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. 
 | 
Set<Map.Entry<K,V>> | 
IMap.entrySet(Predicate predicate)
Queries the map based on the specified predicate and
 returns the matching entries. 
 | 
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 | Interface and Description | 
|---|---|
interface  | 
IndexAwarePredicate  | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
PredicateBuilder  | 
static class  | 
Predicates.AbstractPredicate  | 
static class  | 
Predicates.AndPredicate  | 
static class  | 
Predicates.BetweenPredicate  | 
static class  | 
Predicates.EqualPredicate  | 
static class  | 
Predicates.GreaterLessPredicate  | 
static class  | 
Predicates.InPredicate  | 
static class  | 
Predicates.LikePredicate  | 
static class  | 
Predicates.NotEqualPredicate  | 
static class  | 
Predicates.NotPredicate  | 
static class  | 
Predicates.OrPredicate  | 
static class  | 
Predicates.RegexPredicate  | 
class  | 
SqlPredicate  | 
| Modifier and Type | Field and Description | 
|---|---|
protected Predicate[] | 
Predicates.AndPredicate.predicates  | 
| Modifier and Type | Method and Description | 
|---|---|
static Predicate | 
Predicates.and(Predicate x,
   Predicate y)  | 
static Predicate | 
Predicates.between(String attribute,
       Comparable from,
       Comparable to)  | 
static Predicate | 
Predicates.equal(String attribute,
     Comparable y)  | 
static Predicate | 
Predicates.greaterEqual(String x,
            Comparable y)  | 
static Predicate | 
Predicates.greaterThan(String x,
           Comparable y)  | 
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 x,
  Predicate y)  | 
static Predicate | 
Predicates.regex(String attribute,
     String pattern)  | 
| Modifier and Type | Method and Description | 
|---|---|
PredicateBuilder | 
PredicateBuilder.and(Predicate predicate)  | 
static Predicate | 
Predicates.and(Predicate x,
   Predicate y)  | 
static Predicate | 
Predicates.and(Predicate x,
   Predicate y)  | 
static Predicate | 
Predicates.not(Predicate predicate)  | 
PredicateBuilder | 
PredicateBuilder.or(Predicate predicate)  | 
static Predicate | 
Predicates.or(Predicate x,
  Predicate y)  | 
static Predicate | 
Predicates.or(Predicate x,
  Predicate y)  | 
| Constructor and Description | 
|---|
AndPredicate(Predicate... predicates)  | 
NotPredicate(Predicate predicate)  | 
OrPredicate(Predicate... predicates)  | 
Copyright © 2017 Hazelcast, Inc.. All Rights Reserved.