Home »
Java programming language
Java LinkedHashMap containsValue() Method with Example
LinkedHashMap Class containsValue() method: Here, we are going to learn about the containsValue() method of LinkedHashMap Class with its syntax and example.
Submitted by Preeti Jain, on March 09, 2020
LinkedHashMap Class containsValue() method
- containsValue() method is available in java.util package.
- containsValue() method is used to check whether this LinkedHashMap associates at least one key element to 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 a key element for the given value element.
Syntax:
public boolean containsValue(Object val_ele);
Parameter(s):
- Object val_ele – represents the value element to be tested for its existence in this LinkedHashMap.
Return value:
The return type of the method is boolean, it returns true when the given value element (val_ele) holds at least one key element otherwise it returns false.
Example:
// Java program to demonstrate the example
// of boolean containsValue(Object val_ele) method
// of LinkedHashMap
import java.util.*;
public class ContainsValueOfLinkedHashMap {
public static void main(String[] args) {
// Instantiates a LinkedHashMap object
Map < Integer, String > map = new LinkedHashMap < Integer, String > ();
// By using put() method is to add
// key-value pairs in a LinkedHashMap
map.put(10, "C");
map.put(20, "C++");
map.put(50, "JAVA");
map.put(40, "PHP");
map.put(30, "SFDC");
//Display LinkedHashMap
System.out.println("LinkedHashMap: " + map);
// By using containsValue() method is
// to check whether this map associates
// any key for the given key elemen or nott
// of this LinkedHashMap
boolean status = map.containsValue("PHP");
System.out.print("map.containsValue(PHP): ");
System.out.println(status);
}
}
Output
LinkedHashMap: {10=C, 20=C++, 50=JAVA, 40=PHP, 30=SFDC}
map.containsValue(PHP): true