Package com.google.common.collect
Class ForwardingSortedMap.StandardKeySet
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.ForwardingSortedMap.StandardKeySet
- All Implemented Interfaces:
Iterable<K>
,Collection<K>
,SequencedCollection<K>
,SequencedSet<K>
,Set<K>
,SortedSet<K>
- Enclosing class:
ForwardingSortedMap<K,
V>
A sensible implementation of
SortedMap.keySet()
in terms of the methods of
ForwardingSortedMap
. In many cases, you may wish to override ForwardingMap.keySet()
to forward to this implementation or a subclass thereof.- Since:
- 15.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.SortedKeySet
comparator, first, headSet, last, map, subSet, tailSet
Methods inherited from class com.google.common.collect.Maps.KeySet
clear, contains, forEach, isEmpty, iterator, remove, size
Methods inherited from class com.google.common.collect.Sets.ImprovedAbstractSet
removeAll, retainAll
Methods inherited from class java.util.AbstractSet
equals, hashCode
Methods inherited from class java.util.AbstractCollection
add, addAll, containsAll, toArray, toArray, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray
Methods inherited from interface java.util.SortedSet
addFirst, addLast, getFirst, getLast, removeFirst, removeLast, reversed, spliterator
-
Constructor Details
-
StandardKeySet
public StandardKeySet()Constructor for use by subclasses.
-