Class ForwardingSortedMultiset.StandardDescendingMultiset

    • Method Detail

      • comparator

        public java.util.Comparator<? super E> comparator()
        Description copied from interface: SortedMultiset
        Returns the comparator that orders this multiset, or Ordering.natural() if the natural ordering of the elements is used.
        Specified by:
        comparator in interface SortedMultiset<E extends @Nullable java.lang.Object>
      • elementSet

        public java.util.NavigableSet<E> elementSet()
        Description copied from interface: Multiset
        Returns the set of distinct elements contained in this multiset. The element set is backed by the same data as the multiset, so any change to either is immediately reflected in the other. The order of the elements in the element set is unspecified.

        If the element set supports any removal operations, these necessarily cause all occurrences of the removed element(s) to be removed from the multiset. Implementations are not expected to support the add operations, although this is possible.

        A common use for the element set is to find the number of distinct elements in the multiset: elementSet().size().

        Specified by:
        elementSet in interface Multiset<E extends @Nullable java.lang.Object>
        Specified by:
        elementSet in interface SortedMultiset<E extends @Nullable java.lang.Object>
        Overrides:
        elementSet in class ForwardingMultiset<E extends @Nullable java.lang.Object>
        Returns:
        a view of the set of distinct elements in this multiset
      • headMultiset

        public SortedMultiset<E> headMultiset​(E toElement,
                                              BoundType boundType)
        Description copied from interface: SortedMultiset
        Returns a view of this multiset restricted to the elements less than upperBound, optionally including upperBound itself. The returned multiset is a view of this multiset, so changes to one will be reflected in the other. The returned multiset supports all operations that this multiset supports.

        The returned multiset will throw an IllegalArgumentException on attempts to add elements outside its range.

        Specified by:
        headMultiset in interface SortedMultiset<E extends @Nullable java.lang.Object>
      • subMultiset

        public SortedMultiset<E> subMultiset​(E fromElement,
                                             BoundType fromBoundType,
                                             E toElement,
                                             BoundType toBoundType)
        Description copied from interface: SortedMultiset
        Returns a view of this multiset restricted to the range between lowerBound and upperBound. The returned multiset is a view of this multiset, so changes to one will be reflected in the other. The returned multiset supports all operations that this multiset supports.

        The returned multiset will throw an IllegalArgumentException on attempts to add elements outside its range.

        This method is equivalent to tailMultiset(lowerBound, lowerBoundType).headMultiset(upperBound, upperBoundType).

        Specified by:
        subMultiset in interface SortedMultiset<E extends @Nullable java.lang.Object>
      • tailMultiset

        public SortedMultiset<E> tailMultiset​(E fromElement,
                                              BoundType boundType)
        Description copied from interface: SortedMultiset
        Returns a view of this multiset restricted to the elements greater than lowerBound, optionally including lowerBound itself. The returned multiset is a view of this multiset, so changes to one will be reflected in the other. The returned multiset supports all operations that this multiset supports.

        The returned multiset will throw an IllegalArgumentException on attempts to add elements outside its range.

        Specified by:
        tailMultiset in interface SortedMultiset<E extends @Nullable java.lang.Object>
      • delegate

        protected Multiset<E> delegate()
        Description copied from class: ForwardingObject
        Returns the backing delegate instance that methods are forwarded to. Abstract subclasses generally override this method with an abstract method that has a more specific return type, such as ForwardingSet.delegate(). Concrete subclasses override this method to supply the instance being decorated.
        Specified by:
        delegate in class ForwardingMultiset<E extends @Nullable java.lang.Object>
      • entrySet

        public java.util.Set<Multiset.Entry<E>> entrySet()
        Description copied from interface: Multiset
        Returns a view of the contents of this multiset, grouped into Multiset.Entry instances, each providing an element of the multiset and the count of that element. This set contains exactly one entry for each distinct element in the multiset (thus it always has the same size as the Multiset.elementSet()). The order of the elements in the element set is unspecified.

        The entry set is backed by the same data as the multiset, so any change to either is immediately reflected in the other. However, multiset changes may or may not be reflected in any Entry instances already retrieved from the entry set (this is implementation-dependent). Furthermore, implementations are not required to support modifications to the entry set at all, and the Entry instances themselves don't even have methods for modification. See the specific implementation class for more details on how its entry set handles modifications.

        Specified by:
        entrySet in interface Multiset<E extends @Nullable java.lang.Object>
        Specified by:
        entrySet in interface SortedMultiset<E extends @Nullable java.lang.Object>
        Overrides:
        entrySet in class ForwardingMultiset<E extends @Nullable java.lang.Object>
        Returns:
        a set of entries representing the data of this multiset
      • iterator

        public java.util.Iterator<E> iterator()
        Description copied from interface: SortedMultiset

        Elements that occur multiple times in the multiset will appear multiple times in this iterator, though not necessarily sequentially.

        The iterator returns the elements in ascending order according to this multiset's comparator.

        Specified by:
        iterator in interface java.util.Collection<E extends @Nullable java.lang.Object>
        Specified by:
        iterator in interface java.lang.Iterable<E extends @Nullable java.lang.Object>
        Specified by:
        iterator in interface Multiset<E extends @Nullable java.lang.Object>
        Specified by:
        iterator in interface SortedMultiset<E extends @Nullable java.lang.Object>
        Overrides:
        iterator in class ForwardingCollection<E extends @Nullable java.lang.Object>
      • toArray

        public <T extends @Nullable java.lang.Object> T[] toArray​(T[] array)
        Specified by:
        toArray in interface java.util.Collection<E extends @Nullable java.lang.Object>
        Overrides:
        toArray in class ForwardingCollection<E extends @Nullable java.lang.Object>