MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / higherKey

Method higherKey

Ports/CLDC11/src/java/util/TreeMap.java:5367–5370  ·  view source on GitHub ↗
(K key)

Source from the content-addressed store, hash-verified

5365 ///
5366 /// - java.util.NavigableMap#higherKey(Object)
5367 public K higherKey(K key) {
5368 Map.Entry<K, V> entry = higherEntry(key);
5369 return (null == entry) ? null : entry.getKey();
5370 }
5371
5372 /// {@inheritDoc}
5373 ///

Callers

nothing calls this directly

Calls 2

higherEntryMethod · 0.95
getKeyMethod · 0.65

Tested by

no test coverage detected