Class DualTreeBidiMap<K,V>
- java.lang.Object
-
- org.apache.openjpa.lib.util.collections.AbstractDualBidiMap<K,V>
-
- org.apache.openjpa.lib.util.collections.DualTreeBidiMap<K,V>
-
- Type Parameters:
K
- the type of the keys in this mapV
- the type of the values in this map
- All Implemented Interfaces:
java.io.Serializable
,java.util.Map<K,V>
,java.util.SortedMap<K,V>
,BidiMap<K,V>
,IterableMap<K,V>
,OrderedBidiMap<K,V>
,OrderedMap<K,V>
,SortedBidiMap<K,V>
public class DualTreeBidiMap<K,V> extends AbstractDualBidiMap<K,V> implements SortedBidiMap<K,V>, java.io.Serializable
Implementation ofBidiMap
that uses twoTreeMap
instances.The setValue() method on iterators will succeed only if the new value being set is not already in the bidimap.
When considering whether to use this class, the
TreeBidiMap
class should also be considered. It implements the interface using a dedicated design, and does not store each object twice, which can save on memory use.NOTE: From Commons Collections 3.1, all subclasses will use
TreeMap
and the flawedcreateMap
method is ignored.- Since:
- 3.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static class
DualTreeBidiMap.BidiOrderedMapIterator<K,V>
Inner class MapIterator.protected static class
DualTreeBidiMap.ViewMap<K,V>
Internal sorted map view.-
Nested classes/interfaces inherited from class org.apache.openjpa.lib.util.collections.AbstractDualBidiMap
AbstractDualBidiMap.BidiMapIterator<K,V>, AbstractDualBidiMap.EntrySet<K,V>, AbstractDualBidiMap.EntrySetIterator<K,V>, AbstractDualBidiMap.KeySet<K>, AbstractDualBidiMap.KeySetIterator<K>, AbstractDualBidiMap.MapEntry<K,V>, AbstractDualBidiMap.Values<V>, AbstractDualBidiMap.ValuesIterator<V>, AbstractDualBidiMap.View<K,V,E>
-
-
Constructor Summary
Constructors Modifier Constructor Description DualTreeBidiMap()
Creates an emptyDualTreeBidiMap
DualTreeBidiMap(java.util.Comparator<? super K> keyComparator, java.util.Comparator<? super V> valueComparator)
Constructs aDualTreeBidiMap
using the specifiedComparator
.DualTreeBidiMap(java.util.Map<? extends K,? extends V> map)
Constructs aDualTreeBidiMap
and copies the mappings from specifiedMap
.protected
DualTreeBidiMap(java.util.Map<K,V> normalMap, java.util.Map<V,K> reverseMap, BidiMap<V,K> inverseBidiMap)
Constructs aDualTreeBidiMap
that decorates the specified maps.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Comparator<? super K>
comparator()
protected DualTreeBidiMap<V,K>
createBidiMap(java.util.Map<V,K> normalMap, java.util.Map<K,V> reverseMap, BidiMap<K,V> inverseMap)
Creates a new instance of this object.K
firstKey()
Gets the first key currently in this map.java.util.SortedMap<K,V>
headMap(K toKey)
SortedBidiMap<V,K>
inverseBidiMap()
Gets a view of this map where the keys and values are reversed.OrderedBidiMap<V,K>
inverseOrderedBidiMap()
SortedBidiMap<V,K>
inverseSortedBidiMap()
K
lastKey()
Gets the last key currently in this map.OrderedMapIterator<K,V>
mapIterator()
Obtains an ordered map iterator.K
nextKey(K key)
Gets the next key after the one specified.K
previousKey(K key)
Gets the previous key before the one specified.java.util.SortedMap<K,V>
subMap(K fromKey, K toKey)
java.util.SortedMap<K,V>
tailMap(K fromKey)
java.util.Comparator<? super V>
valueComparator()
Get the comparator used for the values in the value-to-key map aspect.-
Methods inherited from class org.apache.openjpa.lib.util.collections.AbstractDualBidiMap
clear, containsKey, containsValue, createEntrySetIterator, createKeySetIterator, createValuesIterator, entrySet, equals, get, getKey, hashCode, isEmpty, keySet, put, putAll, remove, removeValue, size, toString, values
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.openjpa.lib.util.collections.BidiMap
getKey, put, removeValue, values
-
Methods inherited from interface org.apache.openjpa.lib.util.collections.IterableMap
clear, putAll
-
-
-
-
Constructor Detail
-
DualTreeBidiMap
public DualTreeBidiMap()
Creates an emptyDualTreeBidiMap
-
DualTreeBidiMap
public DualTreeBidiMap(java.util.Map<? extends K,? extends V> map)
Constructs aDualTreeBidiMap
and copies the mappings from specifiedMap
.- Parameters:
map
- the map whose mappings are to be placed in this map
-
DualTreeBidiMap
public DualTreeBidiMap(java.util.Comparator<? super K> keyComparator, java.util.Comparator<? super V> valueComparator)
Constructs aDualTreeBidiMap
using the specifiedComparator
.- Parameters:
keyComparator
- the comparatorvalueComparator
- the values comparator to use
-
DualTreeBidiMap
protected DualTreeBidiMap(java.util.Map<K,V> normalMap, java.util.Map<V,K> reverseMap, BidiMap<V,K> inverseBidiMap)
Constructs aDualTreeBidiMap
that decorates the specified maps.- Parameters:
normalMap
- the normal direction mapreverseMap
- the reverse direction mapinverseBidiMap
- the inverse BidiMap
-
-
Method Detail
-
createBidiMap
protected DualTreeBidiMap<V,K> createBidiMap(java.util.Map<V,K> normalMap, java.util.Map<K,V> reverseMap, BidiMap<K,V> inverseMap)
Creates a new instance of this object.- Specified by:
createBidiMap
in classAbstractDualBidiMap<K,V>
- Parameters:
normalMap
- the normal direction mapreverseMap
- the reverse direction mapinverseMap
- the inverse BidiMap- Returns:
- new bidi map
-
comparator
public java.util.Comparator<? super K> comparator()
-
valueComparator
public java.util.Comparator<? super V> valueComparator()
Description copied from interface:SortedBidiMap
Get the comparator used for the values in the value-to-key map aspect.- Specified by:
valueComparator
in interfaceSortedBidiMap<K,V>
- Returns:
- Comparator<? super V>
-
firstKey
public K firstKey()
Description copied from interface:OrderedMap
Gets the first key currently in this map.
-
lastKey
public K lastKey()
Description copied from interface:OrderedMap
Gets the last key currently in this map.
-
nextKey
public K nextKey(K key)
Description copied from interface:OrderedMap
Gets the next key after the one specified.- Specified by:
nextKey
in interfaceOrderedMap<K,V>
- Parameters:
key
- the key to search for next from- Returns:
- the next key, null if no match or at end
-
previousKey
public K previousKey(K key)
Description copied from interface:OrderedMap
Gets the previous key before the one specified.- Specified by:
previousKey
in interfaceOrderedMap<K,V>
- Parameters:
key
- the key to search for previous from- Returns:
- the previous key, null if no match or at start
-
mapIterator
public OrderedMapIterator<K,V> mapIterator()
Obtains an ordered map iterator.This implementation copies the elements to an ArrayList in order to provide the forward/backward behaviour.
- Specified by:
mapIterator
in interfaceIterableMap<K,V>
- Specified by:
mapIterator
in interfaceOrderedMap<K,V>
- Overrides:
mapIterator
in classAbstractDualBidiMap<K,V>
- Returns:
- a new ordered map iterator
-
inverseSortedBidiMap
public SortedBidiMap<V,K> inverseSortedBidiMap()
-
inverseOrderedBidiMap
public OrderedBidiMap<V,K> inverseOrderedBidiMap()
-
inverseBidiMap
public SortedBidiMap<V,K> inverseBidiMap()
Description copied from interface:BidiMap
Gets a view of this map where the keys and values are reversed.Changes to one map will be visible in the other and vice versa. This enables both directions of the map to be accessed as a
Map
.Implementations should seek to avoid creating a new object every time this method is called. See
AbstractMap.values()
etc. Calling this method on the inverse map should return the original.- Specified by:
inverseBidiMap
in interfaceBidiMap<K,V>
- Specified by:
inverseBidiMap
in interfaceOrderedBidiMap<K,V>
- Specified by:
inverseBidiMap
in interfaceSortedBidiMap<K,V>
- Overrides:
inverseBidiMap
in classAbstractDualBidiMap<K,V>
- Returns:
- an inverted bidirectional map
-
-