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 Vceiling(V v)java.util.Iterator<V>descendingIterator()java.util.NavigableSet<V>descendingSet()Vfloor(V v)(package private) java.util.NavigableSet<V>getSortedSetDelegate()java.util.NavigableSet<V>headSet(V toElement, boolean inclusive)Vhigher(V v)Vlower(V v)VpollFirst()VpollLast()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, AbstractMapBasedMultimap.WrappedCollection ancestor)
-
-
Method Detail
-
getSortedSetDelegate
java.util.NavigableSet<V> getSortedSetDelegate()
- Overrides:
getSortedSetDelegatein classAbstractMapBasedMultimap.WrappedSortedSet
-
descendingSet
public java.util.NavigableSet<V> descendingSet()
- Specified by:
descendingSetin interfacejava.util.NavigableSet<V>
-
descendingIterator
public java.util.Iterator<V> descendingIterator()
- Specified by:
descendingIteratorin interfacejava.util.NavigableSet<V>
-
subSet
public java.util.NavigableSet<V> subSet(V fromElement, boolean fromInclusive, V toElement, boolean toInclusive)
- Specified by:
subSetin interfacejava.util.NavigableSet<V>
-
headSet
public java.util.NavigableSet<V> headSet(V toElement, boolean inclusive)
- Specified by:
headSetin interfacejava.util.NavigableSet<V>
-
-