
Java – How to get all Entries or Key-Value pairs of HashMap ?
In this article, we will discuss how to get all entries or Key-Value pairs of a HashMap or implementation classes of Map interface like LinkedHashMap Read More
In this article, we will discuss how to get all entries or Key-Value pairs of a HashMap or implementation classes of Map interface like LinkedHashMap Read More
In this article, we will discuss how to get all values of a HashMap or implementation classes of Map interface like LinkedHashMap or TreeMap 1. Read More
In this article, we will discuss how to get all keys of a HashMap or implementation classes of Map interface like LinkedHashMap or TreeMap 1. Read More
In this article, we will discuss how to remove elements from ArrayList while iterating Collections objects using Iterator interface Note: ConcurrentModificationException will be thrown when Read More
In this article, we will discuss how to get minimum element from ArrayList using Collections class’s utility min() method 1. To get minimum element from Read More
In this article, we will discuss how to get maximum element from ArrayList using Collections class’s utility max() method 1. To get maximum element from Read More
In this article, we will discuss how to convert Ordered ArrayList into Sorted TreeSet in Java We can sort ArrayList in both ascending and descending Read More
In this article, we will discuss how to sort HashSet contents in ascending as well as descending order Sorting HashSet in Ascending and Descending order: Read More
In this article, we will discuss how to convert Arrays into Set 1. Conversion of Arrays into List using asList() method : We can use Read More
In this article, we will discuss how to convert HashSet into Arrays using Collection’s toArray() method Conversion of HashSet into Arrays using toArrays() method : Read More
In this article, we will discuss how to sort contents of LinkedList in ascending order containing only unique elements 1. Approach : Convert LinkedList into Read More
In this article, we will discuss how to remove duplicate elements from ArrayList Q) How to convert ArrayList to HashSet ? use inter-conversion collection constructor Read More
In this article, we will discuss various ways to iterate through Vector objects Various ways to iterate through Vector: regular for-loop Enhanced for-loop introduced in Read More
In this article, we will discuss how to reverse the contents of LinkedHashSet Key points about LinkedList: LinkedHashSet maintains insertion-order It uses doubly-linked list and Read More
In one of the previous article, we have discussed various ways to iterate through Set Various ways to iterate through Set: Enhanced for-loop (introduced in Read More
In this article, we will discuss various ways to iterate through HashSet – 3 ways Different ways to iterate through HashSet: Enhanced for-loop introduced in Read More
In this article, we will add one HashSet contents to another HashSet using addAll method of Collection interface 1. Adding one HashSet to another HashSet Read More
In this article, we will compare 2 HashSet contents using containsAll method of Collection interface Collection‘s containsAll() method is used to check whether one Set Read More
In this article, we will discuss an example on how to search, whether particular element present in HashSet or NOT 1. Searching element from HashSet Read More
In this article, we will discuss retainAll() method of Collection interface with HashSet boolean retainAll(Collection c); remove/deletes all element/objects of invoking collection except specified collection Read More