(K key)
| 5365 | /// |
| 5366 | /// - java.util.NavigableMap#higherKey(Object) |
| 5367 | public K higherKey(K key) { |
| 5368 | Map.Entry<K, V> entry = higherEntry(key); |
| 5369 | return (null == entry) ? null : entry.getKey(); |
| 5370 | } |
| 5371 | |
| 5372 | /// {@inheritDoc} |
| 5373 | /// |
nothing calls this directly
no test coverage detected