Home »
Java programming language
Java TreeMap entrySet() Method with Example
TreeMap Class entrySet() method: Here, we are going to learn about the entrySet() method of TreeMap Class with its syntax and example.
Submitted by Preeti Jain, on February 19, 2020
TreeMap Class entrySet() method
- entrySet() method is available in java.util package.
- entrySet() method is used to return the entries exists in this TreeMap to be viewed in a Set and we will get the entries based on increasing order of the key element.
- entrySet() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
- entrySet() method does not throw an exception at the time of returning entry.
Syntax:
public Set entrySet();
Parameter(s):
- It does not accept any parameter.
Return value:
The return type of the method is Set, it gets entry exists in this TreeMap to be viewed in a Set.
Example:
// Java program to demonstrate the example
// of Set entrySet() method of TreeMap
import java.util.*;
public class EntrySetOfTreeMap {
public static void main(String[] args) {
// Instantiates a TreeMap object
TreeMap < Integer, String > tree_map = new TreeMap < Integer, String > ();
// By using put() method is to add
// key-value pairs in a TreeMap
tree_map.put(10, "C");
tree_map.put(20, "C++");
tree_map.put(50, "JAVA");
tree_map.put(40, "PHP");
tree_map.put(30, "SFDC");
// Display TreeMap
System.out.println("TreeMap: " + tree_map);
// By using entrySet() method is to
// return the entry exists in TreeMap
// to be viewed in a Set
Set s = tree_map.entrySet();
// Display Set
System.out.println("tree_map.entrySet(): " + s);
}
}
Output
TreeMap: {10=C, 20=C++, 30=SFDC, 40=PHP, 50=JAVA}
tree_map.entrySet(): [10=C, 20=C++, 30=SFDC, 40=PHP, 50=JAVA]