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

/libcore/ojluni/src/main/java/java/util/
H A DNavigableMap.java46 * and {@link #higherEntry} return {@code Map.Entry} objects
198 Map.Entry<K,V> higherEntry(K key); method in interface:NavigableMap
H A DTreeMap.java766 public Map.Entry<K,V> higherEntry(K key) { method in class:TreeMap
1542 public final Map.Entry<K,V> higherEntry(K key) { method in class:TreeMap.NavigableSubMap
H A DCollections.java1951 public Entry<K, V> higherEntry(K key) { method in class:Collections.UnmodifiableNavigableMap
1952 Entry<K,V> higher = (Entry<K, V>) nm.higherEntry(key);
2920 public Entry<K, V> higherEntry(K key) method in class:Collections.SynchronizedNavigableMap
2921 { synchronized (mutex) { return nm.higherEntry(key); } }
4124 public Entry<K, V> higherEntry(K key) { method in class:Collections.CheckedNavigableMap
4125 Entry<K,V> higher = nm.higherEntry(key);
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java2193 public Map.Entry<K,V> higherEntry(K key) { method in class:ConcurrentSkipListMap
3017 public Map.Entry<K,V> higherEntry(K key) { method in class:ConcurrentSkipListMap.SubMap

Completed in 90 milliseconds