(K key)
| 5419 | /// |
| 5420 | /// - java.util.NavigableMap#ceilingKey(java.lang.Object) |
| 5421 | public K ceilingKey(K key) { |
| 5422 | Map.Entry<K, V> entry = ceilingEntry(key); |
| 5423 | return (null == entry) ? null : entry.getKey(); |
| 5424 | } |
| 5425 | |
| 5426 | /// {@inheritDoc} |
| 5427 | /// |
nothing calls this directly
no test coverage detected