Package com.google.common.collect
Class ForwardingNavigableMap.StandardDescendingMap
- java.lang.Object
- 
- com.google.common.collect.ForwardingObject
- 
- com.google.common.collect.ForwardingMap<K,V>
- 
- com.google.common.collect.ForwardingNavigableMap.StandardDescendingMap
 
 
 
- 
- All Implemented Interfaces:
- java.util.Map<K,V>,- java.util.NavigableMap<K,V>,- java.util.SortedMap<K,V>
 - Enclosing class:
- ForwardingNavigableMap<K extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
 
 protected class ForwardingNavigableMap.StandardDescendingMap extends ForwardingMap<K,V> A sensible implementation ofNavigableMap.descendingMap()in terms of the methods of thisNavigableMap. In many cases, you may wish to overrideForwardingNavigableMap.descendingMap()to forward to this implementation or a subclass thereof.In particular, this map iterates over entries with repeated calls to NavigableMap.lowerEntry(K). If a more efficient means of iteration is available, you may wish to override theentryIterator()method of this class.- Since:
- 12.0
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from class com.google.common.collect.ForwardingMapForwardingMap.StandardEntrySet, ForwardingMap.StandardKeySet, ForwardingMap.StandardValues
 
- 
 - 
Constructor SummaryConstructors Constructor Description StandardDescendingMap()Constructor for use by subclasses.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map.Entry<K,V>ceilingEntry(K key)KceilingKey(K key)java.util.Comparator<? super K>comparator()protected java.util.Map<K,V>delegate()Returns the backing delegate instance that methods are forwarded to.java.util.NavigableSet<K>descendingKeySet()java.util.NavigableMap<K,V>descendingMap()protected java.util.Iterator<java.util.Map.Entry<K,V>>entryIterator()java.util.Set<java.util.Map.Entry<K,V>>entrySet()java.util.Map.Entry<K,V>firstEntry()KfirstKey()java.util.Map.Entry<K,V>floorEntry(K key)KfloorKey(K key)java.util.SortedMap<K,V>headMap(K toKey)java.util.NavigableMap<K,V>headMap(K toKey, boolean inclusive)java.util.Map.Entry<K,V>higherEntry(K key)KhigherKey(K key)java.util.Set<K>keySet()java.util.Map.Entry<K,V>lastEntry()KlastKey()java.util.Map.Entry<K,V>lowerEntry(K key)KlowerKey(K key)java.util.NavigableSet<K>navigableKeySet()java.util.Map.Entry<K,V>pollFirstEntry()java.util.Map.Entry<K,V>pollLastEntry()java.util.NavigableMap<K,V>subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)java.util.SortedMap<K,V>subMap(K fromKey, K toKey)java.util.SortedMap<K,V>tailMap(K fromKey)java.util.NavigableMap<K,V>tailMap(K fromKey, boolean inclusive)java.lang.StringtoString()Returns the string representation generated by the delegate'stoStringmethod.java.util.Collection<V>values()- 
Methods inherited from class com.google.common.collect.ForwardingMapclear, containsKey, containsValue, equals, get, hashCode, isEmpty, put, putAll, remove, size, standardClear, standardContainsKey, standardContainsValue, standardEquals, standardHashCode, standardIsEmpty, standardPutAll, standardRemove, standardToString
 
- 
 
- 
- 
- 
Constructor Detail- 
StandardDescendingMappublic StandardDescendingMap() Constructor for use by subclasses.
 
- 
 - 
Method Detail- 
entryIteratorprotected java.util.Iterator<java.util.Map.Entry<K,V>> entryIterator() 
 - 
delegateprotected final java.util.Map<K,V> delegate() Description copied from class:ForwardingObjectReturns 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 asForwardingSet.delegate(). Concrete subclasses override this method to supply the instance being decorated.- Specified by:
- delegatein class- ForwardingMap<K extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
 
 - 
comparatorpublic java.util.Comparator<? super K> comparator() 
 - 
firstKeypublic K firstKey() 
 - 
lastKeypublic K lastKey() 
 - 
lowerEntry@CheckForNull public java.util.Map.Entry<K,V> lowerEntry(K key) 
 - 
lowerKey@CheckForNull public K lowerKey(K key) 
 - 
floorEntry@CheckForNull public java.util.Map.Entry<K,V> floorEntry(K key) 
 - 
floorKey@CheckForNull public K floorKey(K key) 
 - 
ceilingEntry@CheckForNull public java.util.Map.Entry<K,V> ceilingEntry(K key) 
 - 
ceilingKey@CheckForNull public K ceilingKey(K key) 
 - 
higherEntry@CheckForNull public java.util.Map.Entry<K,V> higherEntry(K key) 
 - 
higherKey@CheckForNull public K higherKey(K key) 
 - 
firstEntry@CheckForNull public java.util.Map.Entry<K,V> firstEntry() 
 - 
lastEntry@CheckForNull public java.util.Map.Entry<K,V> lastEntry() 
 - 
pollFirstEntry@CheckForNull public java.util.Map.Entry<K,V> pollFirstEntry() 
 - 
pollLastEntry@CheckForNull public java.util.Map.Entry<K,V> pollLastEntry() 
 - 
descendingMappublic java.util.NavigableMap<K,V> descendingMap() 
 - 
entrySetpublic java.util.Set<java.util.Map.Entry<K,V>> entrySet() - Specified by:
- entrySetin interface- java.util.Map<K extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
- Specified by:
- entrySetin interface- java.util.SortedMap<K extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
- Overrides:
- entrySetin class- ForwardingMap<K extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
 
 - 
keySetpublic java.util.Set<K> keySet() - Specified by:
- keySetin interface- java.util.Map<K extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
- Specified by:
- keySetin interface- java.util.SortedMap<K extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
- Overrides:
- keySetin class- ForwardingMap<K extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
 
 - 
navigableKeySetpublic java.util.NavigableSet<K> navigableKeySet() 
 - 
descendingKeySetpublic java.util.NavigableSet<K> descendingKeySet() 
 - 
subMappublic java.util.NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)
 - 
subMappublic java.util.SortedMap<K,V> subMap(K fromKey, K toKey)
 - 
headMappublic java.util.NavigableMap<K,V> headMap(K toKey, boolean inclusive)
 - 
headMappublic java.util.SortedMap<K,V> headMap(K toKey) 
 - 
tailMappublic java.util.NavigableMap<K,V> tailMap(K fromKey, boolean inclusive)
 - 
tailMappublic java.util.SortedMap<K,V> tailMap(K fromKey) 
 - 
valuespublic java.util.Collection<V> values() - Specified by:
- valuesin interface- java.util.Map<K extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
- Specified by:
- valuesin interface- java.util.SortedMap<K extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
- Overrides:
- valuesin class- ForwardingMap<K extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
 
 - 
toStringpublic java.lang.String toString() Description copied from class:ForwardingObjectReturns the string representation generated by the delegate'stoStringmethod.- Overrides:
- toStringin class- ForwardingObject
 
 
- 
 
-