![JAR search and dependency download from the Maven repository](/logo.png)
javadoc.com.google.common.collect.ForwardingMapEntry.html Maven / Gradle / Ivy
ForwardingMapEntry (Guava: Google Core Libraries for Java 11.0.1 API)
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
PREV CLASS
NEXT CLASS
FRAMES
NO FRAMES
SUMMARY: NESTED | FIELD | CONSTR | METHOD
DETAIL: FIELD | CONSTR | METHOD
com.google.common.collect
Class ForwardingMapEntry<K,V>
java.lang.Object
com.google.common.collect.ForwardingObject
com.google.common.collect.ForwardingMapEntry<K,V>
- All Implemented Interfaces:
- Map.Entry<K,V>
@GwtCompatible
public abstract class ForwardingMapEntry<K,V>
- extends ForwardingObject
- implements Map.Entry<K,V>
A map entry which forwards all its method calls to another map entry. Subclasses should override one or more methods to modify the behavior of the backing map entry as desired per the decorator pattern.
Warning: The methods of ForwardingMapEntry
forward
indiscriminately to the methods of the delegate. For example,
overriding getValue()
alone will not change the behavior of
equals(java.lang.Object)
, which can lead to unexpected behavior. In this case, you
should override equals
as well, either providing your own
implementation, or delegating to the provided standardEquals
method.
Each of the standard
methods, where appropriate, use Objects.equal(java.lang.Object, java.lang.Object)
to test equality for both keys and values. This may not be
the desired behavior for map implementations that use non-standard notions of
key equality, such as the entry of a SortedMap
whose comparator is
not consistent with equals
.
The standard
methods are not guaranteed to be thread-safe, even
when all of the methods that they depend on are thread-safe.
- Since:
- 2.0 (imported from Google Collections Library)
- Author:
- Mike Bostock, Louis Wasserman
Constructor Summary | |
---|---|
protected |
ForwardingMapEntry()
Constructor for use by subclasses. |
Method Summary | |
---|---|
protected abstract Map.Entry<K,V> |
delegate()
Returns the backing delegate instance that methods are forwarded to. |
boolean |
equals(Object object)
|
K |
getKey()
|
V |
getValue()
|
int |
hashCode()
|
V |
setValue(V value)
|
protected boolean |
standardEquals(Object object)
A sensible definition of equals(Object) in terms of getKey() and getValue() . |
protected int |
standardHashCode()
A sensible definition of hashCode() in terms of getKey()
and getValue() . |
protected String |
standardToString()
A sensible definition of ForwardingObject.toString() in terms of getKey() and getValue() . |
Methods inherited from class com.google.common.collect.ForwardingObject |
---|
toString |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
ForwardingMapEntry
protected ForwardingMapEntry()
- Constructor for use by subclasses.
Method Detail |
---|
delegate
protected abstract 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 as
ForwardingSet.delegate()
. Concrete subclasses override this method to supply the instance being decorated.- Specified by:
delegate
in classForwardingObject
getKey
public K getKey()
getValue
public V getValue()
setValue
public V setValue(V value)
equals
public boolean equals(@Nullable Object object)
hashCode
public int hashCode()
standardEquals
@Beta protected boolean standardEquals(@Nullable Object object)
- A sensible definition of
equals(Object)
in terms ofgetKey()
andgetValue()
. If you override either of these methods, you may wish to overrideequals(Object)
to forward to this implementation.- Since:
- 7.0
standardHashCode
@Beta protected int standardHashCode()
- A sensible definition of
hashCode()
in terms ofgetKey()
andgetValue()
. If you override either of these methods, you may wish to overridehashCode()
to forward to this implementation.- Since:
- 7.0
standardToString
@Beta protected String standardToString()
- A sensible definition of
ForwardingObject.toString()
in terms ofgetKey()
andgetValue()
. If you override either of these methods, you may wish to overrideequals(java.lang.Object)
to forward to this implementation.- Since:
- 7.0
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright © 2010-2012. All Rights Reserved.