MrJazsohanisharma
Java 8

Java: Collectors Class

Mastering Java 8's Collectors Class Introduction Java 8 introduced the Stream API, which revolutionized t…

Java 8 IntStream Examples

In Java, `IntStream` is a part of the java.util.stream package and represents a stream of primitive integers. It's de…

Introduction To Functional Interface

Functional interfaces are a key feature introduced in Java 8 to support functional programming concepts. A functional interf…

The Power of Java Optional

The Optional class was introduced in Java 8 to handle null values more elegantly. It is a container object which may or may …

[Java 8 Examples] - Transforming a List

In this post, we will see how to transform a list object into different list using streams from Java 8 and Method referen…

Load More
That is All