|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Predicate | |
---|---|
com.hazelcast.core | Provides core API interfaces/classes. |
com.hazelcast.query | Contains interfaces/classes related to Hazelcast query and indexing support. |
Uses of Predicate in com.hazelcast.core |
---|
Methods in com.hazelcast.core with parameters of type Predicate | |
---|---|
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> |
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. |
Uses of Predicate in com.hazelcast.query |
---|
Subinterfaces of Predicate in com.hazelcast.query | |
---|---|
interface |
IndexAwarePredicate
|
Classes in com.hazelcast.query that implement Predicate | |
---|---|
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
|
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 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.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)
|
Methods in com.hazelcast.query with parameters of type Predicate | |
---|---|
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)
|
Constructors in com.hazelcast.query with parameters of type Predicate | |
---|---|
Predicates.AndPredicate(Predicate... predicates)
|
|
Predicates.NotPredicate(Predicate predicate)
|
|
Predicates.OrPredicate(Predicate... predicates)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |