Package com.tangosol.util
Class WrapperCollections.AbstractWrapperEntry<K,V>
- java.lang.Object
-
- com.tangosol.util.WrapperCollections.AbstractWrapperEntry<K,V>
-
- All Implemented Interfaces:
Serializable
,Map.Entry<K,V>
- Enclosing class:
- WrapperCollections
public abstract static class WrapperCollections.AbstractWrapperEntry<K,V> extends Object implements Map.Entry<K,V>, Serializable
Map.Entry implementation which delegates all calls to another Map.Entry.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractWrapperEntry(Map.Entry<K,V> entry)
Create an AbstractWrapperEntry which delegates to the specified Entry.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
protected Map.Entry<K,V>
getDelegate()
Return the Map to which all operations should be delegated to.K
getKey()
V
getValue()
int
hashCode()
V
setValue(V oValue)
String
toString()
-