gnu.kawa.util
Class HashNode
public
class
HashNode
extends Object
implements Entry
An entry in a {@link GeneralHashTable}.
This is a public class to allow overriding.
public boolean equals(Object o)
Implements the general Map.Entry specification.
But note that a GeneralHashTable subclass may override {@code matches},
so it no longer uses equals, in which case it won't be consistent
with this method, unless it is overridden.
public Object get(Object defaultValue)
public Object getKey()
public Object getValue()
public int hashCode()
Implements the general Map.Entry specification.
But note that a GeneralHashTable subclass may override {@code hash},
so it no longer uses equals, in which case it won't be consistent
with this method, unless it is overridden.
public Object setValue(Object value)