Uses of Interface
com.hazelcast.function.PredicateEx
Package | Description |
---|---|
com.hazelcast.function |
Serializable and exception-declaring variants of functional interfaces from
java.util.function . |
-
Uses of PredicateEx in com.hazelcast.function
Methods in com.hazelcast.function that return PredicateEx Modifier and Type Method Description static <T> PredicateEx<T>
PredicateEx. alwaysFalse()
Returns a predicate that always evaluates tofalse
.static <T> PredicateEx<T>
PredicateEx. alwaysTrue()
Returns a predicate that always evaluates totrue
.default PredicateEx<T>
PredicateEx. and(PredicateEx<? super T> other)
Serializable
variant ofjava.util.function.Predicate#and(Predicate)
.static <T> PredicateEx<T>
PredicateEx. isEqual(Object other)
Serializable
variant ofdefault PredicateEx<T>
PredicateEx. negate()
Serializable
variant ofPredicate.negate()
.default PredicateEx<T>
PredicateEx. or(PredicateEx<? super T> other)
Serializable
variant ofjava.util.function.Predicate#or(Predicate)
.Methods in com.hazelcast.function with parameters of type PredicateEx Modifier and Type Method Description default PredicateEx<T>
PredicateEx. and(PredicateEx<? super T> other)
Serializable
variant ofjava.util.function.Predicate#and(Predicate)
.default PredicateEx<T>
PredicateEx. or(PredicateEx<? super T> other)
Serializable
variant ofjava.util.function.Predicate#or(Predicate)
.