News

Java 8 lambdas and the new Streams API simplify common idiomatic constructs. In this article we investigate some common use cases in financial services and how they are easily solved with lambdas ...
The proposal explains that Java 8, unveiled in March 2014, introduced the first API specifically for lambda expressions, the Stream API, java.util.stream.
The Java 8 Stream API is exploiting the method handles needed for Java 8's lambda implementation.
Java 8 will be remembered mainly for introducing lambdas, streams, a new date/time model, and Nashorn--but don't miss the new Base64 API. It could be just what you need to ensure data integrity in ...
The functional consumer interface is a key part of the Java Streams API. Here is a simple Consumer interface example to show you how to use this Java component.