LongStream allMatch(LongPredicate predicate) example
Description
LongStream allMatch(LongPredicate predicate)
returns whether all elements of this stream match the provided predicate.
Syntax
allMatch
has the following syntax.
boolean allMatch(LongPredicate predicate)
Example
The following example shows how to use allMatch
.
import java.util.stream.LongStream;
/*ww w.j a v a2 s . c o m*/
public class Main {
public static void main(String[] args) {
LongStream b = LongStream.of(1L, 2L, Long.MAX_VALUE, Long.MIN_VALUE);
boolean o = b.allMatch(n-> n > 10);
System.out.println(o);
}
}
The code above generates the following result.