Java TreeMap - entrySet() Method
The java.util.TreeMap.entrySet() method returns a Set view of the mappings contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa.
Syntax
public Set<Map.Entry<K,V>> entrySet()
Here, K and V are the type of key and value respectively maintained by the container.
Parameters
No parameter is required.
Return Value
Returns a set view of the mappings contained in this map.
Exception
NA
Example:
In the example below, the java.util.TreeMap.entrySet() method returns a view of the mappings contained in the given TreeMap.
import java.util.*; public class MyClass { public static void main(String[] args) { //creating a treemap TreeMap<Integer, String> MyMap = new TreeMap<Integer, String>(); //populating the map MyMap.put(102, "John"); MyMap.put(103, "Marry"); MyMap.put(101, "Kim"); MyMap.put(104, "Jo"); MyMap.put(105, "Sam"); //printing the content of the map System.out.println("MyMap contains: " + MyMap); //creating a set view of mapping of MyMap Set SetView = MyMap.entrySet(); //printing the set view of mapping System.out.println("SetView contains: " + SetView); } }
The output of the above code will be:
MyMap contains: {101=Kim, 102=John, 103=Marry, 104=Jo, 105=Sam} SetView contains: [101=Kim, 102=John, 103=Marry, 104=Jo, 105=Sam]
❮ Java.util - TreeMap