(@Nullable Entry<?, V> entry)
| 3659 | } |
| 3660 | |
| 3661 | @Nullable |
| 3662 | static <V> V valueOrNull(@Nullable Entry<?, V> entry) { |
| 3663 | return (entry == null) ? null : entry.getValue(); |
| 3664 | } |
| 3665 | |
| 3666 | static class SortedKeySet<K, V> extends KeySet<K, V> implements SortedSet<K> { |
| 3667 | SortedKeySet(SortedMap<K, V> map) { |