Package com.google.common.collect
Class AbstractMapBasedMultimap.WrappedNavigableSet
- java.lang.Object
-
- java.util.AbstractCollection<V>
-
- com.google.common.collect.AbstractMapBasedMultimap.WrappedCollection
-
- com.google.common.collect.AbstractMapBasedMultimap.WrappedSortedSet
-
- com.google.common.collect.AbstractMapBasedMultimap.WrappedNavigableSet
-
- All Implemented Interfaces:
java.lang.Iterable<V>
,java.util.Collection<V>
,java.util.NavigableSet<V>
,java.util.Set<V>
,java.util.SortedSet<V>
- Enclosing class:
- AbstractMapBasedMultimap<K,V>
class AbstractMapBasedMultimap.WrappedNavigableSet extends AbstractMapBasedMultimap.WrappedSortedSet implements java.util.NavigableSet<V>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.google.common.collect.AbstractMapBasedMultimap.WrappedCollection
AbstractMapBasedMultimap.WrappedCollection.WrappedIterator
-
-
Field Summary
-
Fields inherited from class com.google.common.collect.AbstractMapBasedMultimap.WrappedCollection
ancestor, ancestorDelegate, delegate, key
-
-
Constructor Summary
Constructors Constructor Description WrappedNavigableSet(K key, java.util.NavigableSet<V> delegate, AbstractMapBasedMultimap.WrappedCollection ancestor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description V
ceiling(V v)
java.util.Iterator<V>
descendingIterator()
java.util.NavigableSet<V>
descendingSet()
V
floor(V v)
(package private) java.util.NavigableSet<V>
getSortedSetDelegate()
java.util.NavigableSet<V>
headSet(V toElement, boolean inclusive)
V
higher(V v)
V
lower(V v)
V
pollFirst()
V
pollLast()
java.util.NavigableSet<V>
subSet(V fromElement, boolean fromInclusive, V toElement, boolean toInclusive)
java.util.NavigableSet<V>
tailSet(V fromElement, boolean inclusive)
private java.util.NavigableSet<V>
wrap(java.util.NavigableSet<V> wrapped)
-
Methods inherited from class com.google.common.collect.AbstractMapBasedMultimap.WrappedSortedSet
comparator, first, headSet, last, subSet, tailSet
-
Methods inherited from class com.google.common.collect.AbstractMapBasedMultimap.WrappedCollection
add, addAll, addToMap, clear, contains, containsAll, equals, getAncestor, getDelegate, getKey, hashCode, iterator, refreshIfEmpty, remove, removeAll, removeIfEmpty, retainAll, size, spliterator, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
Constructor Detail
-
WrappedNavigableSet
WrappedNavigableSet(K key, java.util.NavigableSet<V> delegate, @CheckForNull AbstractMapBasedMultimap.WrappedCollection ancestor)
-
-
Method Detail
-
getSortedSetDelegate
java.util.NavigableSet<V> getSortedSetDelegate()
- Overrides:
getSortedSetDelegate
in classAbstractMapBasedMultimap.WrappedSortedSet
-
ceiling
@CheckForNull public V ceiling(V v)
- Specified by:
ceiling
in interfacejava.util.NavigableSet<V>
-
higher
@CheckForNull public V higher(V v)
- Specified by:
higher
in interfacejava.util.NavigableSet<V>
-
pollFirst
@CheckForNull public V pollFirst()
- Specified by:
pollFirst
in interfacejava.util.NavigableSet<V>
-
pollLast
@CheckForNull public V pollLast()
- Specified by:
pollLast
in interfacejava.util.NavigableSet<V>
-
descendingSet
public java.util.NavigableSet<V> descendingSet()
- Specified by:
descendingSet
in interfacejava.util.NavigableSet<V>
-
descendingIterator
public java.util.Iterator<V> descendingIterator()
- Specified by:
descendingIterator
in interfacejava.util.NavigableSet<V>
-
subSet
public java.util.NavigableSet<V> subSet(V fromElement, boolean fromInclusive, V toElement, boolean toInclusive)
- Specified by:
subSet
in interfacejava.util.NavigableSet<V>
-
headSet
public java.util.NavigableSet<V> headSet(V toElement, boolean inclusive)
- Specified by:
headSet
in interfacejava.util.NavigableSet<V>
-
-