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

/libcore/ojluni/src/main/java/java/util/
H A DNavigableMap.java51 * {@link #higherKey} return only the associated keys. All of these
212 K higherKey(K key); method in interface:NavigableMap
H A DTreeMap.java777 public K higherKey(K key) { method in class:TreeMap
1143 public E higher(E e) { return m.higherKey(e); }
1546 public final K higherKey(K key) { method in class:TreeMap.NavigableSubMap
H A DCollections.java1923 public K higherKey(K key) { return nm.higherKey(key); } method in class:Collections.UnmodifiableNavigableMap
2922 public K higherKey(K key) method in class:Collections.SynchronizedNavigableMap
2923 { synchronized (mutex) { return nm.higherKey(key); } }
4131 public K higherKey(K key) { return nm.higherKey(key); } method in class:Collections.CheckedNavigableMap
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java2202 public K higherKey(K key) { method in class:ConcurrentSkipListMap
2371 public K higher(K e) { return m.higherKey(e); }
3021 public K higherKey(K key) { method in class:ConcurrentSkipListMap.SubMap

Completed in 97 milliseconds