Package com.google.common.collect
Class AbstractBiMap.BiMapEntry
- java.lang.Object
-
- com.google.common.collect.ForwardingObject
-
- com.google.common.collect.ForwardingMapEntry<K,V>
-
- com.google.common.collect.AbstractBiMap.BiMapEntry
-
- All Implemented Interfaces:
java.util.Map.Entry<K,V>
- Enclosing class:
- AbstractBiMap<K,V>
class AbstractBiMap.BiMapEntry extends ForwardingMapEntry<K,V>
-
-
Constructor Summary
Constructors Constructor Description BiMapEntry(java.util.Map.Entry<K,V> delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.util.Map.Entry<K,V>
delegate()
Returns the backing delegate instance that methods are forwarded to.V
setValue(V value)
-
Methods inherited from class com.google.common.collect.ForwardingMapEntry
equals, getKey, getValue, hashCode, standardEquals, standardHashCode, standardToString
-
Methods inherited from class com.google.common.collect.ForwardingObject
toString
-
-
-
-
Method Detail
-
delegate
protected java.util.Map.Entry<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 asForwardingSet.delegate()
. Concrete subclasses override this method to supply the instance being decorated.- Specified by:
delegate
in classForwardingMapEntry<K,V>
-
-