/*
Check if a particular value exists in Java TreeMap example
This Java Example shows how to check if TreeMap object contains a particular
value using containsValue method of TreeMap class.
*/
import java.util.TreeMap;
public class CheckValueOfTreeMapExample {
public static void main(String[] args) {
//create TreeMap object
TreeMap treeMap = new TreeMap();
//add key value pairs to TreeMap
treeMap.put("1","One");
treeMap.put("2","Two");
treeMap.put("3","Three");
/*
To check whether a particular value exists in TreeMap use
boolean containsValue(Object key) method of TreeMap class.
It returns true if the value is mapped to one or more keys in the
TreeMap otherwise false.
*/
boolean blnExists = treeMap.containsValue("Three");
System.out.println("Three exists in TreeMap ? : " + blnExists);
}
}
/*
Output would be
Three exists in TreeMap ? : true
*/
Bookmark/Search this post with:
query
TreeMap treeMap = new TreeMap();
Hi what if I have
and want to check if one of the values contains string "singer".
Is it possible to do that?
Map map = new TreeMap();
Post new comment