Package com.google.common.collect
Class ForwardingNavigableMap.StandardNavigableKeySet
java.lang.Object
java.util.AbstractCollection<K>
java.util.AbstractSet<K>
com.google.common.collect.Sets.ImprovedAbstractSet<K>
com.google.common.collect.Maps.KeySet<K,V>
com.google.common.collect.Maps.SortedKeySet<K,V>
com.google.common.collect.Maps.NavigableKeySet<K,V>
com.google.common.collect.ForwardingNavigableMap.StandardNavigableKeySet
- All Implemented Interfaces:
Iterable<K>,Collection<K>,NavigableSet<K>,SequencedCollection<K>,SequencedSet<K>,Set<K>,SortedSet<K>
- Enclosing class:
ForwardingNavigableMap<K,V>
A sensible implementation of
NavigableMap.navigableKeySet() in terms of the methods of
this NavigableMap. In many cases, you may wish to override ForwardingNavigableMap.navigableKeySet() to forward to this implementation or a subclass
thereof.- Since:
- 12.0
-
Field Summary
Fields inherited from class com.google.common.collect.Maps.KeySet
map -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.google.common.collect.Maps.NavigableKeySet
ceiling, descendingIterator, descendingSet, floor, headSet, headSet, higher, lower, map, pollFirst, pollLast, subSet, subSet, tailSet, tailSetMethods inherited from class com.google.common.collect.Maps.SortedKeySet
comparator, first, lastMethods inherited from class com.google.common.collect.Maps.KeySet
clear, contains, forEach, isEmpty, iterator, remove, sizeMethods inherited from class com.google.common.collect.Sets.ImprovedAbstractSet
removeAll, retainAllMethods inherited from class java.util.AbstractSet
equals, hashCodeMethods inherited from class java.util.AbstractCollection
add, addAll, containsAll, toArray, toArray, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArrayMethods inherited from interface java.util.NavigableSet
iterator, removeFirst, removeLast, reversedMethods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, size, toArray, toArrayMethods inherited from interface java.util.SortedSet
addFirst, addLast, comparator, first, getFirst, getLast, last, spliterator
-
Constructor Details
-
StandardNavigableKeySet
public StandardNavigableKeySet()Constructor for use by subclasses.
-