Uses of Interface
java.util.function.IntPredicate
Packages that use IntPredicate
Package
Description
Functional interfaces provide target types for lambda expressions
and method references.
Classes to support functional-style operations on streams of elements, such
as map-reduce transformations on collections.
-
Uses of IntPredicate in java.util.function
Methods in java.util.function that return IntPredicateModifier and TypeMethodDescriptiondefault IntPredicateIntPredicate.and(IntPredicate other)Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.default IntPredicateIntPredicate.negate()Returns a predicate that represents the logical negation of this predicate.default IntPredicateIntPredicate.or(IntPredicate other)Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.Methods in java.util.function with parameters of type IntPredicateModifier and TypeMethodDescriptiondefault IntPredicateIntPredicate.and(IntPredicate other)Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.default IntPredicateIntPredicate.or(IntPredicate other)Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another. -
Uses of IntPredicate in java.util.stream
Methods in java.util.stream with parameters of type IntPredicateModifier and TypeMethodDescriptionbooleanIntStream.allMatch(IntPredicate predicate)Returns whether all elements of this stream match the provided predicate.booleanIntStream.anyMatch(IntPredicate predicate)Returns whether any elements of this stream match the provided predicate.default IntStreamIntStream.dropWhile(IntPredicate predicate)Returns, if this stream is ordered, a stream consisting of the remaining elements of this stream after dropping the longest prefix of elements that match the given predicate.IntStream.filter(IntPredicate predicate)Returns a stream consisting of the elements of this stream that match the given predicate.static IntStreamIntStream.iterate(int seed, IntPredicate hasNext, IntUnaryOperator next)Returns a sequential orderedIntStreamproduced by iterative application of the givennextfunction to an initial element, conditioned on satisfying the givenhasNextpredicate.booleanIntStream.noneMatch(IntPredicate predicate)Returns whether no elements of this stream match the provided predicate.default IntStreamIntStream.takeWhile(IntPredicate predicate)Returns, if this stream is ordered, a stream consisting of the longest prefix of elements taken from this stream that match the given predicate.