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

Method floorKey

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

Source from the content-addressed store, hash-verified

5446 ///
5447 /// - java.util.NavigableMap#floorKey(Object)
5448 public K floorKey(K key) {
5449 Map.Entry<K, V> entry = floorEntry(key);
5450 return (null == entry) ? null : entry.getKey();
5451 }
5452
5453 final AbstractMap.SimpleImmutableEntry<K, V> newImmutableEntry(
5454 TreeMap.Entry<K, V> entry) {

Callers

nothing calls this directly

Calls 2

floorEntryMethod · 0.95
getKeyMethod · 0.65

Tested by

no test coverage detected