Package com.google.common.collect
Class ForwardingSortedMultiset.StandardElementSet
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractSet<E>
-
- com.google.common.collect.ForwardingSortedMultiset.StandardElementSet
-
- All Implemented Interfaces:
Iterable<E>,Collection<E>,NavigableSet<E>,Set<E>,SortedSet<E>
- Enclosing class:
- ForwardingSortedMultiset<E extends @Nullable Object>
protected class ForwardingSortedMultiset.StandardElementSet extends AbstractSet<E>
A sensible implementation ofSortedMultiset.elementSet()in terms of the following methods:Collection.clear(),SortedMultiset.comparator(),Multiset.contains(java.lang.Object),Multiset.containsAll(java.util.Collection<?>),Multiset.count(java.lang.Object),SortedMultiset.firstEntry()SortedMultiset.headMultiset(E, com.google.common.collect.BoundType),Collection.isEmpty(),SortedMultiset.lastEntry(),SortedMultiset.subMultiset(E, com.google.common.collect.BoundType, E, com.google.common.collect.BoundType),SortedMultiset.tailMultiset(E, com.google.common.collect.BoundType), thesize()anditerator()methods ofSortedMultiset.entrySet(), andMultiset.remove(Object, int). In many situations, you may wish to overrideSortedMultiset.elementSet()to forward to this implementation or a subclass thereof.- Since:
- 15.0
-
-
Constructor Summary
Constructors Constructor Description StandardElementSet()Constructor for use by subclasses.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Eceiling(E e)voidclear()Comparator<? super E>comparator()booleancontains(Object o)booleancontainsAll(Collection<?> c)Iterator<E>descendingIterator()NavigableSet<E>descendingSet()Efirst()Efloor(E e)SortedSet<E>headSet(E toElement)NavigableSet<E>headSet(E toElement, boolean inclusive)Ehigher(E e)booleanisEmpty()Iterator<E>iterator()Elast()Elower(E e)EpollFirst()EpollLast()booleanremove(Object o)booleanremoveAll(Collection<?> c)booleanretainAll(Collection<?> c)intsize()NavigableSet<E>subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)SortedSet<E>subSet(E fromElement, E toElement)SortedSet<E>tailSet(E fromElement)NavigableSet<E>tailSet(E fromElement, boolean inclusive)-
Methods inherited from class java.util.AbstractSet
equals, hashCode
-
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.NavigableSet
headSet, iterator, subSet, tailSet
-
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, size, toArray, toArray
-
Methods inherited from interface java.util.SortedSet
comparator, first, last, spliterator
-
-
-
-
Constructor Detail
-
StandardElementSet
public StandardElementSet()
Constructor for use by subclasses.
-
-
Method Detail
-
lower
@CheckForNull public E lower(E e)
- Specified by:
lowerin interfaceNavigableSet<E extends @Nullable Object>
-
floor
@CheckForNull public E floor(E e)
- Specified by:
floorin interfaceNavigableSet<E extends @Nullable Object>
-
ceiling
@CheckForNull public E ceiling(E e)
- Specified by:
ceilingin interfaceNavigableSet<E extends @Nullable Object>
-
higher
@CheckForNull public E higher(E e)
- Specified by:
higherin interfaceNavigableSet<E extends @Nullable Object>
-
descendingSet
public NavigableSet<E> descendingSet()
- Specified by:
descendingSetin interfaceNavigableSet<E extends @Nullable Object>
-
descendingIterator
public Iterator<E> descendingIterator()
- Specified by:
descendingIteratorin interfaceNavigableSet<E extends @Nullable Object>
-
pollFirst
@CheckForNull public E pollFirst()
- Specified by:
pollFirstin interfaceNavigableSet<E extends @Nullable Object>
-
pollLast
@CheckForNull public E pollLast()
- Specified by:
pollLastin interfaceNavigableSet<E extends @Nullable Object>
-
subSet
public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
- Specified by:
subSetin interfaceNavigableSet<E extends @Nullable Object>
-
headSet
public NavigableSet<E> headSet(E toElement, boolean inclusive)
- Specified by:
headSetin interfaceNavigableSet<E extends @Nullable Object>
-
tailSet
public NavigableSet<E> tailSet(E fromElement, boolean inclusive)
- Specified by:
tailSetin interfaceNavigableSet<E extends @Nullable Object>
-
iterator
public Iterator<E> iterator()
-
comparator
public Comparator<? super E> comparator()
- Specified by:
comparatorin interfaceSortedSet<E extends @Nullable Object>
-
subSet
public SortedSet<E> subSet(E fromElement, E toElement)
-
headSet
public SortedSet<E> headSet(E toElement)
-
tailSet
public SortedSet<E> tailSet(E fromElement)
-
clear
public void clear()
-
contains
public boolean contains(@CheckForNull Object o)
-
containsAll
public boolean containsAll(Collection<?> c)
- Specified by:
containsAllin interfaceCollection<E extends @Nullable Object>- Specified by:
containsAllin interfaceSet<E extends @Nullable Object>- Overrides:
containsAllin classAbstractCollection<E extends @Nullable Object>
-
isEmpty
public boolean isEmpty()
-
remove
public boolean remove(@CheckForNull Object o)
-
size
public int size()
-
removeAll
public boolean removeAll(Collection<?> c)
-
retainAll
public boolean retainAll(Collection<?> c)
-
-