public static interface Map.Entry
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object o)
Default object equality (is identity).
|
Object |
getKey() |
Object |
getValue() |
int |
hashCode()
The (default) object hashcode: for transient objects this is simply the
address of the instance in memory, for persistent objects it is the
address at which the instance was first created (maybe in a previous
activation of the VM).
|
Object |
setValue(Object value) |
Object getKey()
Object getValue()
Object setValue(Object value) throws UnsupportedOperationException, ClassCastException, IllegalArgumentException, NullPointerException
boolean equals(Object o)
Object
int hashCode()
Object