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

Method floorKey

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

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

(K key)

Source from the content-addressed store, hash-verified

5379 * @since 1.6
5380 */
5381 public K floorKey(K key) {
5382 Map.Entry<K, V> entry = floorEntry(key);
5383 return (null == entry) ? null : entry.getKey();
5384 }
5385
5386 final AbstractMap.SimpleImmutableEntry<K, V> newImmutableEntry(
5387 TreeMap.Entry<K, V> entry) {

Callers

nothing calls this directly

Calls 2

floorEntryMethod · 0.95
getKeyMethod · 0.65

Tested by

no test coverage detected