{@inheritDoc} @see java.util.NavigableMap#ceilingKey(java.lang.Object) @since 1.6
(K key)
| 5358 | * @since 1.6 |
| 5359 | */ |
| 5360 | public K ceilingKey(K key) { |
| 5361 | Map.Entry<K, V> entry = ceilingEntry(key); |
| 5362 | return (null == entry) ? null : entry.getKey(); |
| 5363 | } |
| 5364 | |
| 5365 | /** |
| 5366 | * {@inheritDoc} |
nothing calls this directly
no test coverage detected