VOOZH about

URL: https://www.geeksforgeeks.org/java/weakhashmap-values-method-in-java/

⇱ WeakHashMap values() Method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

WeakHashMap values() Method in Java

Last Updated : 20 Jul, 2018
The java.util.WeakHashMap.values() method of HashMap class in Java is used to create a collection out of the values of the map. It basically returns a Collection view of the values in the Map. Syntax:
Weak_Hash_Map.values()
Parameters: The method does not accept any parameters. Return Value: The method is used to return a collection view containing all the values of the map. Below programs are used to illustrate the working of java.util.WeakHashMap.values() Method: Program 1:
Output:
Initial Mappings are: {30=You, 15=4, 10=Geeks, 25=Welcomes, 20=Geeks}
The collection is: [You, 4, Geeks, Welcomes, Geeks]
Program 2:
Output:
Initial Mappings are: {Welcomes=25, 4=15, You=30, Geeks=20}
The collection is: [25, 15, 30, 20]
Note: The same operation can be performed with any type of Mappings with variation and combination of different data types.
Comment