Java WeakHashMap .containsValue (Object value)
Syntax
WeakHashMap.containsValue(Object value) has the following syntax.
public boolean containsValue(Object value)
Example
In the following code shows how to use WeakHashMap.containsValue(Object value) method.
//from w w w . j av a 2 s .c o m
import java.util.Map;
import java.util.WeakHashMap;
public class Main {
public static void main(String[] args) {
Map<String, String> weakHashMap = new WeakHashMap<String, String> ();
weakHashMap.put("1", "first");
weakHashMap.put("2", "two");
weakHashMap.put("3", "from java2s.com");
// check existence of value "from java2s.com"
System.out.println("Checking value 'three'");
System.out.println(weakHashMap.containsValue("from java2s.com"));
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »