Recently, while developing examples for the groupingBy() guide, I discovered handy JDK 10 additions to the Stream API – Collectors allowing collecting Stream pipelines into…
Leave a CommentCategory: Java
It turns out that the new upcoming LTS JDK 11 release is bringing a few interesting String API updates to the table.
Let’s have a look at them and the interesting facts surrounding them.
Leave a CommentThe groupingBy() is one of the most powerful and customizable Stream API collectors.
If you always find yourself not going beyond:
.collect(groupingBy(...));
…or simply wanted to discover more its potential uses, then this article is for you.
If you’re looking for a general Collectors API overview, head here.
Leave a Comment