Package com.google.common.collect
Class ForwardingSortedMap.StandardKeySet
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractSet<E>
-
- com.google.common.collect.ForwardingSortedMap.StandardKeySet
-
- All Implemented Interfaces:
java.lang.Iterable<K>
,java.util.Collection<K>
,java.util.Set<K>
,java.util.SortedSet<K>
- Enclosing class:
- ForwardingSortedMap<K extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
protected class ForwardingSortedMap.StandardKeySet extends java.util.AbstractSet<E>
A sensible implementation ofSortedMap.keySet()
in terms of the methods ofForwardingSortedMap
. In many cases, you may wish to overrideForwardingMap.keySet()
to forward to this implementation or a subclass thereof.- Since:
- 15.0
-
-
Constructor Summary
Constructors Constructor Description StandardKeySet()
Constructor for use by subclasses.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
java.util.Comparator<? super K>
comparator()
boolean
contains(java.lang.Object o)
K
first()
java.util.SortedSet<K>
headSet(K toElement)
boolean
isEmpty()
java.util.Iterator<K>
iterator()
K
last()
boolean
remove(java.lang.Object o)
boolean
removeAll(java.util.Collection<?> c)
boolean
retainAll(java.util.Collection<?> c)
int
size()
java.util.SortedSet<K>
subSet(K fromElement, K toElement)
java.util.SortedSet<K>
tailSet(K fromElement)
-
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
-
-
-
-
Constructor Detail
-
StandardKeySet
public StandardKeySet()
Constructor for use by subclasses.
-
-
Method Detail
-
comparator
@CheckForNull public java.util.Comparator<? super K> comparator()
- Specified by:
comparator
in interfacejava.util.SortedSet<K extends @Nullable java.lang.Object>
-
subSet
public java.util.SortedSet<K> subSet(K fromElement, K toElement)
- Specified by:
subSet
in interfacejava.util.SortedSet<K extends @Nullable java.lang.Object>
-
headSet
public java.util.SortedSet<K> headSet(K toElement)
- Specified by:
headSet
in interfacejava.util.SortedSet<K extends @Nullable java.lang.Object>
-
tailSet
public java.util.SortedSet<K> tailSet(K fromElement)
- Specified by:
tailSet
in interfacejava.util.SortedSet<K extends @Nullable java.lang.Object>
-
first
public K first()
- Specified by:
first
in interfacejava.util.SortedSet<K extends @Nullable java.lang.Object>
-
last
public K last()
- Specified by:
last
in interfacejava.util.SortedSet<K extends @Nullable java.lang.Object>
-
iterator
public java.util.Iterator<K> iterator()
- Specified by:
iterator
in interfacejava.util.Collection<K extends @Nullable java.lang.Object>
- Specified by:
iterator
in interfacejava.lang.Iterable<K extends @Nullable java.lang.Object>
- Specified by:
iterator
in interfacejava.util.Set<K extends @Nullable java.lang.Object>
- Specified by:
iterator
in classjava.util.AbstractCollection<K extends @Nullable java.lang.Object>
-
size
public int size()
-
isEmpty
public boolean isEmpty()
-
contains
public boolean contains(@CheckForNull java.lang.Object o)
-
remove
public boolean remove(@CheckForNull java.lang.Object o)
-
clear
public void clear()
-
removeAll
public boolean removeAll(java.util.Collection<?> c)
-
retainAll
public boolean retainAll(java.util.Collection<?> c)
-
-