(K key)
| 5392 | /// |
| 5393 | /// - java.util.NavigableMap#lowerKey(Object) |
| 5394 | public K lowerKey(K key) { |
| 5395 | Map.Entry<K, V> entry = lowerEntry(key); |
| 5396 | return (null == entry) ? null : entry.getKey(); |
| 5397 | } |
| 5398 | |
| 5399 | /// {@inheritDoc} |
| 5400 | /// |
nothing calls this directly
no test coverage detected