Measuring Elapsed Time in Java Using a Stopwatch

This post is about measuring elapsed time in Java using a Stopwatch. We will over cover the Stopwatch from Google Guava and the Apache Commons lang.

April 13, 2020

Default Methods in Java

Default methods in Java enable us to add new functionality to the interfaces of our libraries without breaking the existing implementations of the interface

April 6, 2020

Java Method References

A method reference is a reference to an existing method. When a lambda expression just calls an existing method, we can use a Method Reference.

May 29, 2019

A dive deep on Java 8 IntStream

A sequence of primitive int-valued elements supporting sequential and parallel and aggregate operations. It is an int primitive specialization of Stream.

May 14, 2019