java.util.stream – Stream APIs basics | Java8
In this article we will walk through basic overview of java.util.stream package. Package java.util.stream contains classes that support functional type of operations on streams of elements, such as map-reduce transformation, filtering etc. By the end of the article we will be able to answer following questions: 1. What is streams? 2. How it can be created? […]
Stream API | Java8
In this article, we are going to walk through Stream API which is introduced as a part of Java8. Using Stream API, we can make our collection manipulation more declarative and thread safe in case of multi-threaded environment with very ease. The advantage of using Stream API to manipulate collections is we only ask the […]