VOOZH about

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

⇱ IdentityHashMap values() Method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

IdentityHashMap values() Method in Java

Last Updated : 24 Jul, 2018
The java.util.IdentityHashMap.values() method of IdentityHashMap 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:
Identity_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.IdentityHashMap.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