-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStreamsMatchExample.java
53 lines (43 loc) · 1.47 KB
/
StreamsMatchExample.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.learn.streams;
import com.learn.data.StudentDataBase;
public class StreamsMatchExample {
public static void main(String[] args) {
System.out.println("Result of allMatch() : " + allMatch());
System.out.println("Result of anyMatch() : " + anyMatch());
System.out.println("Result of noneMatch() : " + noneMatch());
}
/**
* <p>
* allMatch() takes i/p as Predicate.
* This is going to check whether all the Students in the stream has a GPA >= 3.9.
* </p>
* @return
*/
public static boolean allMatch() {
return StudentDataBase.getAllStudents().stream()
.allMatch(student -> student.getGpa() >= 3.9);
}
/**
* <p>
* anyMatch() takes i/p as Predicate.
* This is going to check whether any of the Students in the stream has a GPA >= 3.9.
* </p>
* @return
*/
public static boolean anyMatch() {
return StudentDataBase.getAllStudents().stream()
.anyMatch(student -> student.getGpa() >= 3.9);
}
/**
* <p>
* noneMatch() takes i/p as Predicate.
* noneMatch() is just Opposite of allMatch().
* This is going to check whether none of the Students in the stream has a GPA >= 4.1.
* </p>
* @return
*/
public static boolean noneMatch() {
return StudentDataBase.getAllStudents().stream()
.noneMatch(student -> student.getGpa() >= 4.1);
}
}