|
Oracle® Coherence Java API Reference Release 3.7.1.0 E22843-01 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Object
com.tangosol.util.WrapperCollections.AbstractWrapperEntry
public abstract static class WrapperCollections.AbstractWrapperEntry
Map.Entry implementation which delegates all calls to another Map.Entry.
| Constructor Summary | |
|---|---|
protected |
WrapperCollections.AbstractWrapperEntry(java.util.Map.Entry entry)Create an AbstractWrapperEntry which delegates to the specified Entry. |
| Method Summary | |
|---|---|
boolean |
equals(java.lang.Object o)Compares the specified object with this entry for equality. |
protected java.util.Map.Entry |
getDelegate()Return the Map to which all operations should be delegated to. |
java.lang.Object |
getKey()Returns the key corresponding to this entry. |
java.lang.Object |
getValue()Returns the value corresponding to this entry. |
int |
hashCode()Returns the hash code value for this map entry. |
java.lang.Object |
setValue(java.lang.Object oValue)Replaces the value corresponding to this entry with the specified value (optional operation). |
java.lang.String |
toString() |
| Constructor Detail |
|---|
protected WrapperCollections.AbstractWrapperEntry(java.util.Map.Entry entry)
entry - the Entry to delegate all calls to| Method Detail |
|---|
protected java.util.Map.Entry getDelegate()
public java.lang.Object getKey()
getKey in interface java.util.Map.Entrypublic java.lang.Object getValue()
getValue in interface java.util.Map.Entrypublic java.lang.Object setValue(java.lang.Object oValue)
setValue in interface java.util.Map.EntryoValue - new value to be stored in this entry.public boolean equals(java.lang.Object o)
(e1.getKey()==null ?
e2.getKey()==null : e1.getKey().equals(e2.getKey())) &&
(e1.getValue()==null ?
e2.getValue()==null : e1.getValue().equals(e2.getValue()))
This ensures that the equals method works properly across different implementations of the Map.Entry interface.equals in interface java.util.Map.Entryo - object to be compared for equality with this map entry.public int hashCode()
(e.getKey()==null ? 0 : e.getKey().hashCode()) ^
(e.getValue()==null ? 0 : e.getValue().hashCode())
This ensures that e1.equals(e2) implies that e1.hashCode()==e2.hashCode() for any two Entries e1 and e2, as required by the general contract of Object.hashCode.hashCode in interface java.util.Map.EntryObject.hashCode(), Object.equals(Object), Map.Entry.equals(Object)public java.lang.String toString()
|
Oracle® Coherence Java API Reference Release 3.7.1.0 E22843-01 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||