Java Utility Library

Java WeakHashMap - values() Method



The java.util.WeakHashMap.values() method returns a Collection view of the values contained in this map. The collection is backed by the map, so changes to the map are reflected in the collection, and vice-versa.

Syntax

public Collection<V> values()

Here, V is the type of value maintained by the container.


Parameters

No parameter is required.

Return Value

Returns a collection view of the values contained in this map.

Exception

NA

Example:

In the example below, the java.util.WeakHashMap.values() method returns a view of the values contained in the given map.

import java.util.*;

public class MyClass {
  public static void main(String[] args) {
    //creating a weakhashmap
    WeakHashMap<Integer, String> MyMap = new WeakHashMap<Integer, String>();

    //populating the map
    MyMap.put(101, "John");
    MyMap.put(102, "Marry");
    MyMap.put(103, "Kim");
    MyMap.put(104, "Jo");
    MyMap.put(105, "Sam");

    //printing the content of the map
    System.out.println("MyMap contains: " + MyMap);

    //creating a Collection view
    Collection<String> ValueView = MyMap.values();

    //printing the Collection view
    System.out.println("ValueView contains: " + ValueView);
  }
}

The output of the above code will be:

MyMap contains: {105=Sam, 104=Jo, 101=John, 103=Kim, 102=Marry}
ValueView contains: [Sam, Jo, John, Kim, Marry]

❮ Java.util - WeakHashMap