Class ForwardingSortedMultiset.StandardElementSet

    • Constructor Detail

      • StandardElementSet

        public StandardElementSet()
        Constructor for use by subclasses.
    • Method Detail

      • lower

        public E lower(E e)
      • floor

        public E floor(E e)
      • ceiling

        public E ceiling(E e)
      • higher

        public E higher(E e)
      • descendingIterator

        public Iterator<E> descendingIterator()
      • pollFirst

        public E pollFirst()
      • pollLast

        public E pollLast()
      • subSet

        public NavigableSet<E> subSet(E fromElement,
                                      boolean fromInclusive,
                                      E toElement,
                                      boolean toInclusive)
      • headSet

        public NavigableSet<E> headSet(E toElement,
                                       boolean inclusive)
      • tailSet

        public NavigableSet<E> tailSet(E fromElement,
                                       boolean inclusive)
      • comparator

        public Comparator<? super E> comparator()
      • subSet

        public SortedSet<E> subSet(E fromElement,
                                   E toElement)
      • headSet

        public SortedSet<E> headSet(E toElement)
      • tailSet

        public SortedSet<E> tailSet(E fromElement)
      • first

        public E first()
      • last

        public E last()
      • clear

        public void clear()
      • contains

        public boolean contains(Object o)
      • containsAll

        public boolean containsAll(Collection<?> c)
      • isEmpty

        public boolean isEmpty()
      • iterator

        public Iterator<E> iterator()
      • remove

        public boolean remove(Object o)
      • size

        public int size()
      • removeAll

        public boolean removeAll(Collection<?> c)
      • retainAll

        public boolean retainAll(Collection<?> c)