Uses of Interface
org.wildfly.clustering.function.IntPredicate
Packages that use IntPredicate
-
Uses of IntPredicate in org.wildfly.clustering.function
Fields in org.wildfly.clustering.function declared as IntPredicateModifier and TypeFieldDescriptionstatic final IntPredicateIntPredicate.ALWAYSA predicate that always returns truestatic final IntPredicateIntPredicate.NEGATIVEA predicate that returns true if the parameter is less than zero.static final IntPredicateIntPredicate.NEVERA predicate that always returns falsestatic final IntPredicateIntPredicate.POSITIVEA predicate that returns true if the parameter is greater than zero.static final IntPredicateIntPredicate.ZEROA predicate that returns true if the parameter is zero.Methods in org.wildfly.clustering.function that return IntPredicateModifier and TypeMethodDescriptiondefault IntPredicateIntPredicate.and(IntPredicate other) default IntPredicateDoublePredicate.composeInt(IntToDoubleFunction function) Returns a predicate that applies the specified function to its argument before evaluating.default IntPredicateIntPredicate.composeInt(IntUnaryOperator composer) Returns a predicate that applies the specified function to its argument before evaluating.default IntPredicateLongPredicate.composeInt(IntToLongFunction function) Returns a predicate that applies the specified function to its argument before evaluating.default IntPredicatePredicate.composeInt(IntFunction<T> function) Returns a predicate that applies the specified function to its argument before evaluating.static IntPredicateIntPredicate.equalTo(int base) Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.static IntPredicateIntPredicate.greaterThan(int base) Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.static IntPredicateIntPredicate.lessThan(int base) Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.default IntPredicateIntPredicate.negate()static IntPredicateIntPredicate.of(boolean result) Returns a predicate that always evaluates to the specified result.static IntPredicateIntPredicate.of(IntConsumer consumer, BooleanSupplier supplier) Returns a predicate that accepts its parameter via the specified consumer and returns the result of the specified supplier.default IntPredicateIntPredicate.or(IntPredicate other) default IntPredicateIntPredicate.xor(IntPredicate other) Returns a predicate returning the exclusive disjunction of this predicate with the specified predicate.