Class ForwardingNavigableMap.StandardDescendingMap

    • Constructor Detail

      • StandardDescendingMap

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

      • delegate

        protected final Map<K,V> 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.
      • comparator

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

        public K firstKey()
      • lastKey

        public K lastKey()
      • lowerEntry

        public Map.Entry<K,V> lowerEntry(K key)
      • lowerKey

        public K lowerKey(K key)
      • floorEntry

        public Map.Entry<K,V> floorEntry(K key)
      • floorKey

        public K floorKey(K key)
      • ceilingEntry

        public Map.Entry<K,V> ceilingEntry(K key)
      • ceilingKey

        public K ceilingKey(K key)
      • higherEntry

        public Map.Entry<K,V> higherEntry(K key)
      • higherKey

        public K higherKey(K key)
      • firstEntry

        public Map.Entry<K,V> firstEntry()
      • lastEntry

        public Map.Entry<K,V> lastEntry()
      • pollFirstEntry

        public Map.Entry<K,V> pollFirstEntry()
      • pollLastEntry

        public Map.Entry<K,V> pollLastEntry()
      • keySet

        public Set<K> keySet()
      • descendingKeySet

        public NavigableSet<K> descendingKeySet()
      • subMap

        public NavigableMap<K,V> subMap(K fromKey,
                                        boolean fromInclusive,
                                        K toKey,
                                        boolean toInclusive)
      • headMap

        public NavigableMap<K,V> headMap(K toKey,
                                         boolean inclusive)
      • tailMap

        public NavigableMap<K,V> tailMap(K fromKey,
                                         boolean inclusive)
      • subMap

        public SortedMap<K,V> subMap(K fromKey,
                                     K toKey)
      • headMap

        public SortedMap<K,V> headMap(K toKey)
      • tailMap

        public SortedMap<K,V> tailMap(K fromKey)
      • toString

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