-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
## Functional programming timeline in Java | ||
|
||
| Java Version | Feature | Date | Release notes | | ||
|--------------|-------------------------------------------------------------------------------------|-----------|------------------------------------------------------------------------| | ||
| Java 8 | - Lambda Expressions - Optional - Stream API - CompletableFuture | 18/3/2014 | https://www.oracle.com/java/technologies/javase/8-whats-new.html | | ||
| Java 9 | - CompletableFuture updates | 21/9/2017 | https://www.oracle.com/java/technologies/javase/9-all-relnotes.html | | ||
| Java 10 | - Optional updates - Immutable Lists | 20/3/2018 | https://www.oracle.com/java/technologies/javase/10-relnote-issues.html | | ||
| Java 11 | - Not Predicate operator - Local-Variable Syntax for Lambda | 25/9/2018 | https://www.oracle.com/java/technologies/javase/11all-relnotes.html | | ||
| Java 12 | - Teeing Collector - Pattern Matching | 19/3/2019 | https://www.oracle.com/java/technologies/javase/12-relnote-issues.html | | ||
| Java 13 | - Switch Expressions enhancements | 17/9/2019 | https://www.oracle.com/java/technologies/javase/13-relnote-issues.html | | ||
| Java 14 | - Records | 17/3/2020 | https://www.oracle.com/java/technologies/javase/14-relnote-issues.html | | ||
| Java 15 | - Sealed Classes (Preview) | 15/9/2020 | https://www.oracle.com/java/technologies/javase/15-relnote-issues.html | | ||
| Java 16 | - Sealed Classes (Preview) - Stream.toList | 16/3/2021 | https://www.oracle.com/java/technologies/javase/16-relnote-issues.html | | ||
| Java 17 | - Sealed Classes (JEP 409) - Pattern Matching for Switch (JEP 406) (Preview) | 14/9/2021 | https://www.oracle.com/java/technologies/javase/17-relnote-issues.html | | ||
| Java 18 | - Pattern Matching for switch (JEP 420) (Preview) | 22/3/2022 | https://www.oracle.com/java/technologies/javase/18all-relnotes.html | | ||
| Java 19 | - Record Patterns - Pattern Matching for switch (JEP 427) (Preview) | 20/9/2022 | https://www.oracle.com/java/technologies/javase/19-relnote-issues.html | | ||
| Java 20 | - Record Patterns (JEP 432) - Pattern Matching for Switch (JEP 433) (Preview) | 21/3/2023 | https://www.oracle.com/java/technologies/javase/20-relnote-issues.html | | ||
| Java 21 | - Record Patterns (JEP 440) - Pattern Matching for switch (JEP 441) | 19/9/2023 | https://www.oracle.com/java/technologies/javase/21-relnote-issues.html | | ||
| Java 22 | - Stream Gatherers (JEP 461) (Preview) | 19/3/2024 | https://www.oracle.com/java/technologies/javase/22-relnote-issues.html | | ||
|