Searched defs:TreeMap (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/util/
H A DTreeMap.java25 import static java.util.TreeMap.Bound.*;
26 import static java.util.TreeMap.Relation.*;
54 * TreeMap<String, String> map = new TreeMap<String, String>(String.CASE_INSENSITIVE_ORDER);
59 * // But the case insensitive ordering says compare("a", "A") == 0. TreeMap
66 public class TreeMap<K, V> extends AbstractMap<K, V> class in inherits:AbstractMap,SortedMap,NavigableMap,Cloneable,Serializable
86 public TreeMap() { method in class:TreeMap
98 * TreeMap} constructor overloads are ambiguous, prefer to construct a map
100 * TreeMap<String, Integer> customOrderedMap
101 * = new TreeMap<Strin
105 public TreeMap(Map<? extends K, ? extends V> copyFrom) { method in class:TreeMap
120 public TreeMap(Comparator<? super K> comparator) { method in class:TreeMap
143 public TreeMap(SortedMap<K, ? extends V> copyFrom) { method in class:TreeMap
[all...]

Completed in 390 milliseconds