Java TreeMap Particular Value Exists Example
Chapter:
Collections
Last Updated:
13-05-2016 20:12:59 UTC
Program:
/* ............... START ............... */
import java.util.TreeMap;
public class JavaTreeMapValueExists {
public static void main(String[] args) {
TreeMap treeMap = new TreeMap();
treeMap.put("1", "One");
treeMap.put("2", "Two");
treeMap.put("3", "Three");
boolean exists = treeMap.containsValue("Three");
System.out.println("Result : " + exists);
}
}
/* ............... END ............... */
Output
Tags
Collection, TreeMap Particular Value Exists, Java