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

Method ceilingKey

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

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

(K key)

Source from the content-addressed store, hash-verified

5358 * @since 1.6
5359 */
5360 public K ceilingKey(K key) {
5361 Map.Entry<K, V> entry = ceilingEntry(key);
5362 return (null == entry) ? null : entry.getKey();
5363 }
5364
5365 /**
5366 * {@inheritDoc}

Callers

nothing calls this directly

Calls 2

ceilingEntryMethod · 0.95
getKeyMethod · 0.65

Tested by

no test coverage detected