-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStreamsFlatMapExample.java
79 lines (69 loc) · 2.25 KB
/
StreamsFlatMapExample.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
72
73
74
75
76
77
78
79
package com.learn.streams;
import com.learn.data.Student;
import com.learn.data.StudentDataBase;
import java.util.List;
import java.util.stream.Collectors;
public class StreamsFlatMapExample {
public static void main(String[] args) {
System.out.println(studentActivities());
System.out.println(uniqueStudentActivities());
System.out.println(studentActivitiesCount());
System.out.println(studentActivitiesInSortedOrder());
}
/**
* <p>
* we have to print all activities in a List.
* Using flatMap to Flatten the Stream.
* </p>
* @return
*/
public static List<String> studentActivities() {
return StudentDataBase.getAllStudents().stream()
.map(Student::getActivities)
.flatMap(List::stream)
.collect(Collectors.toList());
}
/**
* <p>
* we want unique set of activities that all students are participating
* use distinct() : Perform Unique operation. ( similar to SQL Queries )
* </p>
*/
public static List<String> uniqueStudentActivities() {
return StudentDataBase.getAllStudents().stream()
.map(Student::getActivities)
.flatMap(List::stream)
.distinct()
.collect(Collectors.toList());
}
/**
* <p>
* Get count of all activities from StudentDataBase.
* count() : gives total number of elements in that Stream.
* </p>
* @return
*/
public static long studentActivitiesCount() {
return StudentDataBase.getAllStudents().stream()
.map(Student::getActivities)
.flatMap(List::stream)
.distinct()
.count();
}
/**
* <p>
* we want Student activities in Sorted Order.
* sorted() :
* we can also pass Custom Comparator as argument to it.
* </p>
* @return
*/
public static List<String> studentActivitiesInSortedOrder() {
return StudentDataBase.getAllStudents().stream()
.map(Student::getActivities)
.flatMap(List::stream)
.distinct()
.sorted()
.collect(Collectors.toList());
}
}