Home »
Java programming language
Java EnumMap keySet() Method with Example
EnumMap Class keySet() method: Here, we are going to learn about the keySet() method of EnumMap Class with its syntax and example.
Submitted by Preeti Jain, on February 10, 2020
EnumMap Class keySet() method
- keySet() method is available in java.util package.
- keySet() method is used to get a set view of all the keys that exist in this enum map.
- keySet() 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.
- keySet() method does not throw an exception at the time of returning the key set.
Syntax:
public Set keySet();
Parameter(s):
- It does not accept any parameter.
Return value:
The return type of this method is Set, it gets all the keys exists in this enum map to be viewed in a set.
Example:
// Java program to demonstrate the example
// of Value get(Object key_ele) method of
// EnumMap
import java.util.*;
public class GetOfEnumMap {
public enum Colors {
RED,
BLUE,
PINK,
YELLOW
};
public static void main(String[] args) {
// We are creating EnumMap object
EnumMap < Colors, String > em =
new EnumMap < Colors, String > (Colors.class);
// By using put() method is to
// add the linked values in an
// EnumMap (em)
em.put(Colors.RED, "1");
em.put(Colors.BLUE, "2");
em.put(Colors.PINK, "3");
em.put(Colors.YELLOW, "4");
// Display EnumMap
System.out.println("EnumMap (em) :" + em);
// By using get(key_ele) method isto
// return the value of the given key
// element (key_ele) when exists otherwise
// it returns null
String val_ele = em.get(Colors.BLUE);
// Display val_ele of the given key
// element in an EnumMap
System.out.println("em.get(Colors.BLUE): " + val_ele);
}
}
Output
EnumMap (em) :{RED=1, BLUE=2, PINK=3, YELLOW=4}
em.get(Colors.BLUE): 2