Class ForwardingNavigableSet.StandardDescendingSet

    • Constructor Detail

      • StandardDescendingSet

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

      • delegate

        protected NavigableSet<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.
      • lower

        public E lower(E e)
      • floor

        public E floor(E e)
      • ceiling

        public E ceiling(E e)
      • higher

        public E higher(E e)
      • pollFirst

        public E pollFirst()
      • pollLast

        public E pollLast()
      • descendingIterator

        public Iterator<E> descendingIterator()
      • 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()
      • first

        public E first()
      • headSet

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

        public E last()
      • subSet

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

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

        public Iterator<E> iterator()
      • toArray

        public Object[] toArray()
      • toArray

        public <T> T[] toArray(T[] array)
      • toString

        public String toString()
        Description copied from class: ForwardingObject
        Returns the string representation generated by the delegate's toString method.