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:
java.lang.Iterable<E>
,java.util.Collection<E>
,java.util.NavigableSet<E>
,java.util.Set<E>
,java.util.SortedSet<E>
- Enclosing class:
- ForwardingSortedMultiset<E extends @Nullable java.lang.Object>
protected class ForwardingSortedMultiset.StandardElementSet extends java.util.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 E
ceiling(E e)
void
clear()
java.util.Comparator<? super E>
comparator()
boolean
contains(java.lang.Object o)
boolean
containsAll(java.util.Collection<?> c)
java.util.Iterator<E>
descendingIterator()
java.util.NavigableSet<E>
descendingSet()
E
first()
E
floor(E e)
java.util.SortedSet<E>
headSet(E toElement)
java.util.NavigableSet<E>
headSet(E toElement, boolean inclusive)
E
higher(E e)
boolean
isEmpty()
java.util.Iterator<E>
iterator()
E
last()
E
lower(E e)
E
pollFirst()
E
pollLast()
boolean
remove(java.lang.Object o)
boolean
removeAll(java.util.Collection<?> c)
boolean
retainAll(java.util.Collection<?> c)
int
size()
java.util.NavigableSet<E>
subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
java.util.SortedSet<E>
subSet(E fromElement, E toElement)
java.util.SortedSet<E>
tailSet(E fromElement)
java.util.NavigableSet<E>
tailSet(E fromElement, boolean inclusive)
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
Constructor Detail
-
StandardElementSet
public StandardElementSet()
Constructor for use by subclasses.
-
-
Method Detail
-
lower
@CheckForNull public E lower(E e)
- Specified by:
lower
in interfacejava.util.NavigableSet<E extends @Nullable java.lang.Object>
-
floor
@CheckForNull public E floor(E e)
- Specified by:
floor
in interfacejava.util.NavigableSet<E extends @Nullable java.lang.Object>
-
ceiling
@CheckForNull public E ceiling(E e)
- Specified by:
ceiling
in interfacejava.util.NavigableSet<E extends @Nullable java.lang.Object>
-
higher
@CheckForNull public E higher(E e)
- Specified by:
higher
in interfacejava.util.NavigableSet<E extends @Nullable java.lang.Object>
-
descendingSet
public java.util.NavigableSet<E> descendingSet()
- Specified by:
descendingSet
in interfacejava.util.NavigableSet<E extends @Nullable java.lang.Object>
-
descendingIterator
public java.util.Iterator<E> descendingIterator()
- Specified by:
descendingIterator
in interfacejava.util.NavigableSet<E extends @Nullable java.lang.Object>
-
pollFirst
@CheckForNull public E pollFirst()
- Specified by:
pollFirst
in interfacejava.util.NavigableSet<E extends @Nullable java.lang.Object>
-
pollLast
@CheckForNull public E pollLast()
- Specified by:
pollLast
in interfacejava.util.NavigableSet<E extends @Nullable java.lang.Object>
-
subSet
public java.util.NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
- Specified by:
subSet
in interfacejava.util.NavigableSet<E extends @Nullable java.lang.Object>
-
headSet
public java.util.NavigableSet<E> headSet(E toElement, boolean inclusive)
- Specified by:
headSet
in interfacejava.util.NavigableSet<E extends @Nullable java.lang.Object>
-
tailSet
public java.util.NavigableSet<E> tailSet(E fromElement, boolean inclusive)
- Specified by:
tailSet
in interfacejava.util.NavigableSet<E extends @Nullable java.lang.Object>
-
iterator
public java.util.Iterator<E> iterator()
-
comparator
public java.util.Comparator<? super E> comparator()
- Specified by:
comparator
in interfacejava.util.SortedSet<E extends @Nullable java.lang.Object>
-
subSet
public java.util.SortedSet<E> subSet(E fromElement, E toElement)
- Specified by:
subSet
in interfacejava.util.SortedSet<E extends @Nullable java.lang.Object>
-
headSet
public java.util.SortedSet<E> headSet(E toElement)
- Specified by:
headSet
in interfacejava.util.SortedSet<E extends @Nullable java.lang.Object>
-
tailSet
public java.util.SortedSet<E> tailSet(E fromElement)
- Specified by:
tailSet
in interfacejava.util.SortedSet<E extends @Nullable java.lang.Object>
-
first
public E first()
- Specified by:
first
in interfacejava.util.SortedSet<E extends @Nullable java.lang.Object>
-
last
public E last()
- Specified by:
last
in interfacejava.util.SortedSet<E extends @Nullable java.lang.Object>
-
clear
public void clear()
-
contains
public boolean contains(@CheckForNull java.lang.Object o)
-
containsAll
public boolean containsAll(java.util.Collection<?> c)
-
isEmpty
public boolean isEmpty()
-
remove
public boolean remove(@CheckForNull java.lang.Object o)
-
size
public int size()
-
removeAll
public boolean removeAll(java.util.Collection<?> c)
-
retainAll
public boolean retainAll(java.util.Collection<?> c)
-
-