-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStreamsMinMaxCollectingThenExample.java
71 lines (59 loc) · 2.17 KB
/
StreamsMinMaxCollectingThenExample.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.learn.streams_terminal;
import com.learn.data.Student;
import com.learn.data.StudentDataBase;
import java.util.Comparator;
import java.util.Map;
import java.util.Optional;
import static java.util.stream.Collectors.*;
public class StreamsMinMaxCollectingThenExample {
public static void main(String[] args) {
System.out.println("Max Student with Optional" + optionalStudentWithMaximumGpa());
System.out.println("Max Student without Optional" + studentWithMaximumGpa());
System.out.println("Student with Least GPA in each Grade : " + studentWithMinimumGpa());
}
/**
* <p>
* Calculate top Gpa Student in each Grade.
* Here value is wrapped inside the Optional,
* but we can avoid this by using CollectingAndThen
* </p>
*/
public static Map<Integer, Optional<Student>> optionalStudentWithMaximumGpa() {
return StudentDataBase.getAllStudents()
.stream()
.collect(groupingBy(Student::getGradeLevel,
maxBy(Comparator.comparing(Student::getGpa))));
}
/**
* <p>
* collectingAndThen() : is going to get the Student if available and then assign that as an value.
* </p>
* @return
*/
public static Map<Integer, Student> studentWithMaximumGpa() {
return StudentDataBase.getAllStudents()
.stream()
.collect(groupingBy(Student::getGradeLevel,
collectingAndThen(maxBy(Comparator.comparing(Student::getGpa)),
Optional::get)
)
);
}
/**
* <p>
* Calculate Least Gpa Student in each Grade.
* </p>
* @return
*/
public static Map<Integer, Student> studentWithMinimumGpa() {
return StudentDataBase.getAllStudents()
.stream()
.collect(
groupingBy(Student::getGradeLevel,
collectingAndThen(
minBy(Comparator.comparing(Student::getGpa)),
Optional::get)
)
);
}
}