public static class TwoKeyHashMap.Entry extends Object implements Map.Entry
Constructor and Description |
---|
TwoKeyHashMap.Entry(int hash,
Object key1,
Object key2,
Object value,
TwoKeyHashMap.Entry next) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj)
Default object equality (is identity).
|
Object |
getKey() |
Object |
getKey1() |
Object |
getKey2() |
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) |
public TwoKeyHashMap.Entry(int hash, Object key1, Object key2, Object value, TwoKeyHashMap.Entry next)
public Object getKey1()
public Object getKey2()
public boolean equals(Object obj)
Object
public int hashCode()
Object