Class ForwardingNavigableMap.StandardNavigableKeySet

    • Constructor Detail

      • StandardNavigableKeySet

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

      • lower

        public K lower(K e)
      • floor

        public K floor(K e)
      • ceiling

        public K ceiling(K e)
      • higher

        public K higher(K e)
      • pollFirst

        public K pollFirst()
      • pollLast

        public K pollLast()
      • descendingIterator

        public Iterator<K> descendingIterator()
      • subSet

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

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

        public NavigableSet<K> tailSet(K fromElement,
                                       boolean inclusive)
      • subSet

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

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

        public SortedSet<K> tailSet(K fromElement)
      • comparator

        public Comparator<? super K> comparator()
      • first

        public K first()
      • last

        public K last()
      • iterator

        public Iterator<K> iterator()
      • size

        public int size()
      • isEmpty

        public boolean isEmpty()
      • contains

        public boolean contains(Object o)
      • remove

        public boolean remove(Object o)
      • clear

        public void clear()
      • removeAll

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

        public boolean retainAll(Collection<?> c)