public static class UnsyncFifoHashtable.MapEntry
extends java.lang.Object
implements java.util.Map.Entry
| Modifier and Type | Field and Description |
|---|---|
protected java.lang.Object |
key |
protected java.lang.Object |
value |
| Constructor and Description |
|---|
MapEntry(java.lang.Object key,
java.lang.Object value) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object o)
Compares the specified object with this entry for equality.
|
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 value)
This method is not supported.
|
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 value)
setValue in interface java.util.Map.Entryvalue - value object.java.lang.UnsupportedOperationException - Always throws this exception.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.Entryequals in class java.lang.Objecto - 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.EntryhashCode in class java.lang.ObjectObject.hashCode(),
Object.equals(Object),
equals(Object)