Home » Java programming language

Java WeakHashMap containsValue() Method with Example

WeakHashMap Class containsValue() method: Here, we are going to learn about the containsValue() method of WeakHashMap Class with its syntax and example.
Submitted by Preeti Jain, on February 23, 2020

WeakHashMap Class containsValue() method

  • containsValue() method is available in java.util package.
  • containsValue() method is used to check whether this map holds at least one key associated with the given value element (val_ele) or not.
  • containsValue() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
  • containsValue() method does not throw an exception at the time of checking the existence of the given key-value element.

Syntax:

    public boolean containsValue(Object val_ele);

Parameter(s):

  • Object val_ele – represents the value element (val_ele) whose existence is to be checked in this map.

Return value:

The return type of the method is boolean, it returns true when at least one key exists to the given value element (val_ele) otherwise it returns false.

Example:

// Java program to demonstrate the example 
// of boolean containsValue(Object val_ele) method
// of WeakHashMap 

import java.util.*;

public class ContainsValueOfWeakHashMap {
    public static void main(String[] args) {
        // Instantiates a WeakHashMap object
        Map < Integer, String > map = new WeakHashMap < Integer, String > ();

        // By using put() method is to add
        // key-value pairs in a TreeMap
        map.put(10, "C");
        map.put(20, "C++");
        map.put(50, "JAVA");
        map.put(40, "PHP");
        map.put(30, "SFDC");

        // Display WeakHashMap
        System.out.println("WeakHashMap: " + map);

        // By using containsValue() method is
        // to check whether this map associates
        // any key for the given key elemen or nott
        // of this WeakHashMap
        boolean status = map.containsValue("PHP");

        System.out.print("map.containsValue(PHP): ");
        System.out.println(status);
    }
}

Output

WeakHashMap: {30=SFDC, 40=PHP, 10=C, 20=C++, 50=JAVA}
map.containsValue(PHP): true



Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.