Uses of Interface
org.wildfly.clustering.function.LongPredicate
Packages that use LongPredicate
-
Uses of LongPredicate in org.wildfly.clustering.function
Fields in org.wildfly.clustering.function declared as LongPredicateModifier and TypeFieldDescriptionstatic final LongPredicateLongPredicate.ALWAYSA predicate that always returns truestatic final LongPredicateLongPredicate.NEGATIVEA predicate that returns true if its parameter is less than zero.static final LongPredicateLongPredicate.NEVERA predicate that always returns falsestatic final LongPredicateLongPredicate.POSITIVEA predicate that returns true if its parameter is greater than zero.static final LongPredicateLongPredicate.ZEROA predicate that returns true if its parameter is zero.Methods in org.wildfly.clustering.function that return LongPredicateModifier and TypeMethodDescriptiondefault LongPredicateLongPredicate.and(LongPredicate other) default LongPredicateDoublePredicate.composeLong(LongToDoubleFunction function) Returns a predicate that applies the specified function to its argument before evaluating.default LongPredicateIntPredicate.composeLong(LongToIntFunction composer) Returns a predicate that applies the specified function to its argument before evaluating.default LongPredicateLongPredicate.composeLong(LongUnaryOperator function) Returns a predicate that applies the specified function to its argument before evaluating.default LongPredicatePredicate.composeLong(LongFunction<T> function) Returns a predicate that applies the specified function to its argument before evaluating.static LongPredicateLongPredicate.equalTo(long base) Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.static LongPredicateLongPredicate.greaterThan(long base) Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.static LongPredicateLongPredicate.lessThan(long base) Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.default LongPredicateLongPredicate.negate()static LongPredicateLongPredicate.of(boolean result) Returns a predicate that always evaluates to the specified result.static LongPredicateLongPredicate.of(LongConsumer consumer, BooleanSupplier supplier) Returns a predicate that accepts its parameter via the specified consumer and returns the result of the specified supplier.default LongPredicateLongPredicate.or(LongPredicate other) default LongPredicateLongPredicate.xor(LongPredicate other) Returns a predicate returning the exclusive disjunction of this predicate with the specified predicate.