{@inheritDoc} @see java.util.NavigableMap#floorKey(Object) @since 1.6
(K key)
| 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) { |
nothing calls this directly
no test coverage detected