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

Method ceilingKey

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

Source from the content-addressed store, hash-verified

5419 ///
5420 /// - java.util.NavigableMap#ceilingKey(java.lang.Object)
5421 public K ceilingKey(K key) {
5422 Map.Entry<K, V> entry = ceilingEntry(key);
5423 return (null == entry) ? null : entry.getKey();
5424 }
5425
5426 /// {@inheritDoc}
5427 ///

Callers

nothing calls this directly

Calls 2

ceilingEntryMethod · 0.95
getKeyMethod · 0.65

Tested by

no test coverage detected