Lambda Expressions in Java: Syntax and Examples

Functional Interface Predicate

1/3

Enumerate default methods of the Predicate interface.

default Predicate<T> and(Predicate<? super T> other)
default Predicate<T> negate()
default Predicate<T> or(Predicate<? super T> other)
Comments