Class DualTreeBidiMap.ViewMap<K,V> 
java.lang.Object
org.apache.commons.collections4.map.AbstractIterableMap<K,V>
 
org.apache.commons.collections4.map.AbstractMapDecorator<K,V>
 
org.apache.commons.collections4.map.AbstractSortedMapDecorator<K,V>
 
org.apache.commons.collections4.bidimap.DualTreeBidiMap.ViewMap<K,V> 
- Type Parameters:
- K- the type of the keys.
- V- the type of the values.
- All Implemented Interfaces:
- Map<K,,- V> - SortedMap<K,,- V> - Get<K,,- V> - IterableGet<K,,- V> - IterableMap<K,,- V> - IterableSortedMap<K,,- V> - OrderedMap<K,,- V> - Put<K,- V> 
- Enclosing class:
- DualTreeBidiMap<K,- V> 
Internal sorted map view.
- Since:
- 3.0
- 
Nested Class SummaryNested classes/interfaces inherited from class org.apache.commons.collections4.map.AbstractSortedMapDecoratorAbstractSortedMapDecorator.SortedMapIterator<K,V> 
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidclear()Removes all of the mappings from this map.booleancontainsValue(Object value) Tests for presence of a given value.protected DualTreeBidiMap<K, V> Gets the map being decorated.Gets the next key after the one specified.previousKey(K key) Gets the previous key before the one specified.Methods inherited from class org.apache.commons.collections4.map.AbstractSortedMapDecoratorcomparator, firstKey, lastKey, mapIteratorMethods inherited from class org.apache.commons.collections4.map.AbstractMapDecoratorcontainsKey, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, toString, valuesMethods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.apache.commons.collections4.GetcontainsKey, entrySet, get, isEmpty, keySet, remove, size, valuesMethods inherited from interface java.util.Mapcompute, computeIfAbsent, computeIfPresent, containsKey, equals, forEach, get, getOrDefault, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size
- 
Constructor Details- 
ViewMap
 
- 
- 
Method Details- 
clear
- 
containsValueDescription copied from interface:GetTests for presence of a given value.- Specified by:
- containsValuein interface- Get<K,- V> 
- Specified by:
- containsValuein interface- Map<K,- V> 
- Overrides:
- containsValuein class- AbstractMapDecorator<K,- V> 
- Parameters:
- value- value whose presence in this map is to be tested
- Returns:
- trueif this map maps one or more keys to the specified value
- See Also:
 
- 
decoratedDescription copied from class:AbstractSortedMapDecoratorGets the map being decorated.- Overrides:
- decoratedin class- AbstractSortedMapDecorator<K,- V> 
- Returns:
- the decorated map
 
- 
headMap
- 
nextKeyDescription copied from interface:OrderedMapGets the next key after the one specified.- Specified by:
- nextKeyin interface- OrderedMap<K,- V> 
- Overrides:
- nextKeyin class- AbstractSortedMapDecorator<K,- V> 
- Parameters:
- key- the key to search for next from
- Returns:
- the next key, null if no match or at end
 
- 
previousKeyDescription copied from interface:OrderedMapGets the previous key before the one specified.- Specified by:
- previousKeyin interface- OrderedMap<K,- V> 
- Overrides:
- previousKeyin class- AbstractSortedMapDecorator<K,- V> 
- Parameters:
- key- the key to search for previous from
- Returns:
- the previous key, null if no match or at start
 
- 
subMap
- 
tailMap
 
-