Last updated: Feb 15, 2022

Maps

Map contains values on the basis of key, i.e. key and value pair. Each key and value pair is known as an entry. A Map contains unique keys. A Map is useful if you have to search, update or delete elements on the basis of a key. Maps are used when you want to associate a key with a value and Lists are an ordered collection.
What is a Multimap in Java? EASY
In Java, a Multimap is a data structure that maps keys to multiple values, allowing multiple values per key, commonly implemented using libraries like Google Guava.
Author Manshi
0 upvotes
EnumMap
This blog will cover the EnumMap class and its various methods in Java.
HashSet EASY
This article deeply discussed the HashSet and various methods, features, and performance of a HashSet.
HashSet
In this blog, we will discuss HashSet.
Introduction to Hash Map
Today, we will learn about Hash Map in java
Difference between HashMap and HashSet MEDIUM
In this article we discussed about Difference between HashMap and HashSet in complete detail.
HashMap entrySet() Method in Java EASY
The Java HashMap.entrySet() method is used to convert the elements within a HashMap into a Set.
WeakHashMap
In this blog, we will discuss WeakHashMap.
LinkedHashMap in Java EASY
A LinkedHashMap in Java is a HashMap that maintains the insertion order or access order of elements, combining hashing with a linked list.
IdentityHashMap in Java
Learn and explore the features, functions and implementation of the IdentityHashMap class.
ConcurrentHashMap in Java
ConcurrentHashMap in Java is a thread-safe and high-performance variant of HashMap designed for concurrent access. Learn and explore the features, functions and implementation of the ConcurrentHashMap class.
Java.util.Dictionary Class in Java EASY
The java.util.Dictionary class in Java is an abstract class that represents a key-value data structure. The Dictionary class is somewhat outdated and not widely used in modern Java programming.
SortedMap
Today, we will learn about SortedMap in java
TreeMap in Java EASY
TreeMap in Java is a Map implementation that stores key-value pairs in a sorted order based on the keys. It uses a Red-Black tree for storage, ensuring O(log n) time for operations like add, remove, and lookup.
flatMap() Method in Java EASY
In this article, we will get to know about Java flatMap(), how does it work and its examples.
Author Rashi
0 upvotes
System.getenv() Method in Java EASY
This blog will cover a detailed explanation of the Java system getenv function. We will also see examples of how the genetv function works.