-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNumericStreamsMapExample.java
59 lines (50 loc) · 1.77 KB
/
NumericStreamsMapExample.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
package com.learn.numericstreams;
import com.learn.data.ToDoNumber;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
public class NumericStreamsMapExample {
public static void main(String[] args) {
System.out.println("mapToObj : " + mapToObj());
System.out.println("mapToLong : " + mapToLong());
System.out.println("mapToDouble : " + mapToDouble());
}
/**
* <p>
* mapToObj() : it takes IntFunction as input and (IntFunction take int value as input )
* Here converting int to an Object.
* </p>
*/
public static List<String> mapToObj() {
return IntStream.rangeClosed(1, 5)
.mapToObj(ToDoNumber::addNumberToList)
.collect(Collectors.toList());
}
/**
* <p>
* mapToLong() : it takes IntToLongFunction as input
* and IntToLongFunction Represents a function that accepts an int-valued argument and produces a long-valued result.
* </p>
* @return
*/
public static long mapToLong() {
return IntStream.rangeClosed(1, 5)
//Here it converts IntStream to LongStream
// and i value passed from IntStream
.mapToLong(i -> i)
.sum();
}
/**
* <p>
* mapToDouble() : it takes IntToDoubleFunction as input
* and IntToDoubleFunction Represents a function that accepts an int-valued argument and produces a double-valued result.
* </p>
*/
public static double mapToDouble() {
return IntStream.rangeClosed(1, 5)
// Here it converts IntStream to DoubleStream
// and i value passed from IntStream
.mapToDouble(i -> i)
.sum();
}
}