private static class MapConstraints.ConstrainedBiMap<K,V> extends MapConstraints.ConstrainedMap<K,V> implements BiMap<K,V>
ForwardingMap.StandardEntrySet, ForwardingMap.StandardKeySet, ForwardingMap.StandardValues
Modifier and Type | Field and Description |
---|---|
(package private) BiMap<V,K> |
inverse |
constraint
Constructor and Description |
---|
ConstrainedBiMap(BiMap<K,V> delegate,
BiMap<V,K> inverse,
MapConstraint<? super K,? super V> constraint) |
Modifier and Type | Method and Description |
---|---|
protected BiMap<K,V> |
delegate()
Returns the backing delegate instance that methods are forwarded to.
|
V |
forcePut(K key,
V value)
An alternate form of
put that silently removes any existing entry
with the value value before proceeding with the BiMap.put(K, V)
operation. |
BiMap<V,K> |
inverse()
Returns the inverse view of this bimap, which maps each of this bimap's
values to its associated key.
|
java.util.Set<V> |
values() |
entrySet, put, putAll
clear, containsKey, containsValue, equals, get, hashCode, isEmpty, keySet, remove, size, standardClear, standardContainsKey, standardContainsValue, standardEquals, standardHashCode, standardIsEmpty, standardPutAll, standardRemove, standardToString
toString
protected BiMap<K,V> delegate()
ForwardingObject
ForwardingSet.delegate()
. Concrete subclasses override this method to supply
the instance being decorated.delegate
in class MapConstraints.ConstrainedMap<K,V>
public V forcePut(K key, V value)
BiMap
put
that silently removes any existing entry
with the value value
before proceeding with the BiMap.put(K, V)
operation. If the bimap previously contained the provided key-value
mapping, this method has no effect.
Note that a successful call to this method could cause the size of the bimap to increase by one, stay the same, or even decrease by one.
Warning: If an existing entry with this value is removed, the key for that entry is discarded and not returned.
forcePut
in interface BiMap<K,V>
key
- the key with which the specified value is to be associatedvalue
- the value to be associated with the specified keynull
, or null
if there was no previous entrypublic BiMap<V,K> inverse()
BiMap
Note:There is no guaranteed correspondence between the iteration order of a bimap and that of its inverse.