The
elements() method of
ConcurrentHashMap class in Java is used to get the enumeration of the values present in the table.
Syntax: Enumeration enu = ConcurrentHashMap.elements()
Parameters: The method does not take any parameters.
Return value: The method returns an enumeration of the values of the HashMap.
Below programs are used to illustrate the working of the elements() method:
Program 1:
Output:
The Map is: {20=Geeks, 25=Welcomes, 10=Geeks, 30=You, 15=4}
The enumeration of values are:
Geeks
Welcomes
Geeks
You
4
Program 2: