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

Method higherKey

vm/JavaAPI/src/java/util/TreeMap.java:5318–5321  ·  view source on GitHub ↗

{@inheritDoc} @see java.util.NavigableMap#higherKey(Object) @since 1.6

(K key)

Source from the content-addressed store, hash-verified

5316 * @since 1.6
5317 */
5318 public K higherKey(K key) {
5319 Map.Entry<K, V> entry = higherEntry(key);
5320 return (null == entry) ? null : entry.getKey();
5321 }
5322
5323 /**
5324 * {@inheritDoc}

Callers

nothing calls this directly

Calls 2

higherEntryMethod · 0.95
getKeyMethod · 0.65

Tested by

no test coverage detected