(K key)
| 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) { |
nothing calls this directly
no test coverage detected