{@inheritDoc} @see java.util.NavigableMap#lowerKey(Object) @since 1.6
(K key)
| 5337 | * @since 1.6 |
| 5338 | */ |
| 5339 | public K lowerKey(K key) { |
| 5340 | Map.Entry<K, V> entry = lowerEntry(key); |
| 5341 | return (null == entry) ? null : entry.getKey(); |
| 5342 | } |
| 5343 | |
| 5344 | /** |
| 5345 | * {@inheritDoc} |
nothing calls this directly
no test coverage detected