Uses of Interface
org.wildfly.clustering.function.DoublePredicate
Packages that use DoublePredicate
-
Uses of DoublePredicate in org.wildfly.clustering.function
Fields in org.wildfly.clustering.function declared as DoublePredicateModifier and TypeFieldDescriptionstatic final DoublePredicateDoublePredicate.ALWAYSA predicate that always returns truestatic final DoublePredicateDoublePredicate.NEGATIVEA predicate that returns true if its parameter is less than zero.static final DoublePredicateDoublePredicate.NEVERA predicate that always returns falsestatic final DoublePredicateDoublePredicate.POSITIVEA predicate that returns true if its parameter is greater than zero.static final DoublePredicateDoublePredicate.ZEROA predicate that returns true if its parameter is zero.Methods in org.wildfly.clustering.function that return DoublePredicateModifier and TypeMethodDescriptiondefault DoublePredicateDoublePredicate.and(DoublePredicate other) default DoublePredicateDoublePredicate.composeDouble(DoubleUnaryOperator function) Returns a predicate that applies the specified function to its argument before evaluating.default DoublePredicateIntPredicate.composeDouble(DoubleToIntFunction composer) Returns a predicate that applies the specified function to its argument before evaluating.default DoublePredicateLongPredicate.composeDouble(DoubleToLongFunction function) Returns a predicate that applies the specified function to its argument before evaluating.default DoublePredicatePredicate.composeDouble(DoubleFunction<T> function) Returns a predicate that applies the specified function to its argument before evaluating.static DoublePredicateDoublePredicate.equalTo(double base) Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.static DoublePredicateDoublePredicate.greaterThan(double base) Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.static DoublePredicateDoublePredicate.lessThan(double base) Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.default DoublePredicateDoublePredicate.negate()static DoublePredicateDoublePredicate.of(boolean result) Returns a predicate that always evaluates to the specified result.static DoublePredicateDoublePredicate.of(DoubleConsumer consumer, BooleanSupplier supplier) Returns a predicate that accepts its parameter via the specified consumer and returns the result of the specified supplier.default DoublePredicateDoublePredicate.or(DoublePredicate other) default DoublePredicateDoublePredicate.xor(DoublePredicate other) Returns a predicate returning the exclusive disjunction of this predicate with the specified predicate.