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

/libcore/ojluni/src/main/java/java/util/
H A DNavigableSet.java45 * {@link #floor}, {@link #ceiling}, and {@link #higher} return elements
145 E higher(E e); method in interface:NavigableSet
H A DTreeSet.java446 public E higher(E e) { method in class:TreeSet
H A DTreeMap.java1143 public E higher(E e) { return m.higherKey(e); } method in class:TreeMap.KeySet
H A DCollections.java1288 public E higher(E e) { return ns.higher(e); } method in class:Collections.UnmodifiableNavigableSet
1952 Entry<K,V> higher = (Entry<K, V>) nm.higherEntry(key);
1953 return (null != higher)
1954 ? new UnmodifiableEntrySet.UnmodifiableEntry<>(higher)
2346 public E higher(E e) { synchronized (mutex) {return ns.higher(e);} } method in class:Collections.SynchronizedNavigableSet
3394 public E higher(E e) { return ns.higher(e); } method in class:Collections.CheckedNavigableSet
4125 Entry<K,V> higher
[all...]
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListSet.java373 public E higher(E e) { method in class:ConcurrentSkipListSet
H A DConcurrentSkipListMap.java1220 * Utility for ceiling, floor, lower, higher methods.
2291 /** Advances next to higher entry. */
2371 public K higher(K e) { return m.higherKey(e); } method in class:ConcurrentSkipListMap.KeySet

Completed in 395 milliseconds