
Java 8 – Stream allMatch() method with examples
In this article, we will discuss Stream’s allMatch() method in details with examples. Read below methods which are similar to allMatch() method anyMatch() method noneMatch() Read More
In this article, we will discuss Stream’s allMatch() method in details with examples. Read below methods which are similar to allMatch() method anyMatch() method noneMatch() Read More
In this article, we will discuss Stream’s noneMatch() method in details with examples Read below methods which are similar to noneMatch() method anyMatch() method allMatch() Read More
In this article, we will discuss Stream’s anyMatch() method in details with examples Read below methods which are similar to anyMatch() method allMatch() method noneMatch() Read More
In this article, we will discuss Stream’s peek() method in details with examples 1. Stream peek() method : This Stream method is an intermediate operation Read More
In this article, we will discuss Stream’s min() and max() methods in details with examples 1. Stream min() method : This Stream method is a Read More
In this article, we will discuss how to remove elements from LinkedList There are different methods available in LinkedList class for removing elements as listed Read More
In this article, we will discuss different types of for-loop evolved over years in various Java versions Starting Java 1.1 version, for-loop was always there Read More
In this article, we will discuss how to convert StringTokenizer tokens into ArrayList Few things to note: StringTokenizer is deprecated now, but however it is Read More
In this article, we will discuss how to sort HashSet. Already, in one of the earlier article we discussed about HashSet sorting in ascending & Read More
In this article, we will discuss how to convert List into Map in Java 8 Already, in the last article we have discussed how to Read More
In this article, we will discuss how to convert List into Map in Java List v/s Map: Before starting with List to Map conversion, Read More
In this article, we will discuss how to convert Map into List in Java 1.8 version As Map contains key-value pairs which is called Read More
In this article, we will discuss how to convert Map into List in Java As Map contains key-value pairs which is called as Map Read More
In this article, we will discuss how to convert Arrays into List in Java 8 using Streams class Solution (version-wise): Until Java 1.7 version, Read More
In this article, we will discuss various ways to remove duplicate elements from Arrays in Java i.e.; Various ways to remove duplicate elements from Arrays: Read More
In this article, we will discuss how to remove duplicate elements from ArrayList in Java Already, we have discussed in one of the earlier article Read More
In this article, we will discuss various ways to iterate through Arrays in Java i.e.; Various ways to iterate through Arrays Standard/traditional/regular for-loop Enhanced for-loop or Read More
In this article, we will discuss how to sort contents of ArrayList using sort() method of List in Java 8 Until Java 1.7 version: Read More
In this article, we will discuss different ways to iterate through List of HashMap. Already, in earlier articles, we have discussed following topics Iterating over Read More
In previous articles, we have discussed how to sort list of objects on the basis of single field using Comparable and Comparator interfaces Read Java 8 Read More