VOOZH about

URL: https://www.geeksforgeeks.org/java/concurrenthashmap-elements-method-in-java-with-examples/

⇱ ConcurrentHashMap elements() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

ConcurrentHashMap elements() method in Java with Examples

Last Updated : 30 Oct, 2018
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:
Output:
The Map is: {4=15, Geeks=20, You=30, Welcomes=25}
The enumeration of values are:
15
20
30
25
Comment