Functional Programming with Java 8

Get ready for your exam by enrolling in our comprehensive training course. This course includes a full set of instructional videos designed to equip you with in-depth knowledge essential for passing the certification exam with flying colors.
$14.99 / $24.99
Environment Setup
-
1. Lets install Java Development Kit (JDK)3m 21s
-
2. Lets install Injellij IDEA6m 26s
-
3. Setting up JDK with IntelliJ and running all tests cases4m 47s
-
4. Codebase walkthrough and branches5m 11s
Lets get started
-
1. Intro to Java Stream API (KEYNOTE)2m 59s
-
2. Imperative Approach Solution6m 15s
-
3. Declarative / Functional Style Approach5m 10s
-
4. Understanding Stream Pipeline3m 43s
Iterating with Streams
-
1. Iterating with IntStream (range and rangeClosed)4m 24s
-
2. Iterating through lists with IntStream (Exercise Solution)3m 12s
-
3. IntStream.iterate3m 5s
Max, Min & Comparators
-
1. Finding min number3m 59s
-
2. Finding max (Exercise Solution)1m 8s
Distinct and Collectors.toSet()
-
1. Removing duplicates in a List2m 43s
-
2. Removing duplicates in a List with Collectors.2m 5s
Filtering and Transformations
-
1. Filtering6m 9s
-
2. Transformations with stream.map8m 42s
-
3. stream.mapToDouble (exercise solution)4m 21s
Find Any vs Find First
-
1. stream.findAny2m 42s
-
2. stream.findFirst2m 58s
-
3. Understanding core difference between stream.findAny and stream.findFirst3m 42s
Pulling out statistics from your data
-
1. Counting2m 7s
-
2. Min & Max without comparators3m 39s
-
3. Calculating Averages2m 52s
-
4. Summing up numbers (Exercise Solution)1m 57s
-
5. Gathering Statistics with Streams3m
Grouping data with streams like SQL
-
1. Grouping data4m 26s
-
2. Grouping & Counting data3m 55s
Reduce and Flatmap
-
1. Reduce4m 43s
-
2. Flatmap4m 59s
Joining Strings
-
1. Joining Strings (PART) (Exercise Solution)3m 19s
-
2. Joining Strings (PART 2)3m 8s
Lets understand how steams really work
-
1. Understanding .collect(...)5m 54s
-
2. Collectors and Multitrheading1m 44s
-
3. Intermidiate & terminal operators and lazy valuation5m 16s
-
4. The Order of how streams process data5m 12s