{@inheritDoc} @see java.util.NavigableMap#higherKey(Object) @since 1.6
(K key)
| 5316 | * @since 1.6 |
| 5317 | */ |
| 5318 | public K higherKey(K key) { |
| 5319 | Map.Entry<K, V> entry = higherEntry(key); |
| 5320 | return (null == entry) ? null : entry.getKey(); |
| 5321 | } |
| 5322 | |
| 5323 | /** |
| 5324 | * {@inheritDoc} |
nothing calls this directly
no test coverage detected