Uses of Interface
org.wildfly.clustering.function.Predicate
Packages that use Predicate
-
Uses of Predicate in org.wildfly.clustering.function
Classes in org.wildfly.clustering.function that implement PredicateFields in org.wildfly.clustering.function declared as PredicateModifier and TypeFieldDescriptionstatic final Predicate<?> Predicate.ALWAYSstatic final Predicate<?> Predicate.NEVERMethods in org.wildfly.clustering.function that return PredicateModifier and TypeMethodDescriptionstatic <T> Predicate<T> Predicate.always()Returns a predicate that always accepts its argument.default <V> Predicate<V> Returns a predicate that applies the specified mapping to its argument before evaluating.static <T> Predicate<T> Predicate.equal(T object) Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.Predicate.handle(BiPredicate<T, RuntimeException> handler) Returns a new predicate that delegates to this predicate using the specified exception handler.default <V> Predicate<V> DoublePredicate.map(ToDoubleFunction<V> mapper) Returns a predicate that applies the specified mapping to its argument before evaluating.default <V> Predicate<V> IntPredicate.map(ToIntFunction<V> mapper) Returns a predicate that applies the specified mapping to its argument before evaluating.default <V> Predicate<V> LongPredicate.map(ToLongFunction<V> mapper) Returns a predicate that applies the specified mapping to its argument before evaluating.Predicate.negate()static <T> Predicate<T> Predicate.never()Returns a predicate that never accepts its argument.static <T> Predicate<T> Returns a predicate that evaluates to the negation of the specified predicate.static <T> Predicate<T> Predicate.of(boolean result) Returns a predicate that always evaluates to the specified result.static <T> Predicate<T> Predicate.same(T object) Returns a predicate that evaluates to true if and only if the argument references the specified object.Methods in org.wildfly.clustering.function with parameters of type PredicateModifier and TypeMethodDescriptionstatic <T> Predicate<T> Returns a predicate that evaluates to the negation of the specified predicate.static <T> BooleanSupplierReturns a boolean supplier that evaluates a predicate against a supplied value.