| java.util.Map.Entry<K, V> |
Map.Entry is a key/value mapping which is contained in a Map.
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Compares the specified object to this Map.Entry and answer if they
are equal.
| |||||||||||
Gets the key.
| |||||||||||
Gets the value.
| |||||||||||
Returns an integer hash code for the receiver.
| |||||||||||
Sets the value.
| |||||||||||
Compares the specified object to this Map.Entry and answer if they are equal. The object must be an instance of Map.Entry and have the same key and value.
| object | the object to compare with this object |
|---|
Gets the key.
Gets the value.
Returns an integer hash code for the receiver. Objects which are equal answer the same value for this method.
Sets the value.
| object | the new value |
|---|