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 CommentJava, JVM, and Modern Software Delivery
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 CommentOne of the coolest (and totally impractical for most developers) features added to Java recently, is the StackWalking API. In this short article, we’ll see…
1 Comment