| java.lang.Object gnu.kawa.util.HashNode
HashNode | public class HashNode implements java.util.Map.Entry(Code) | | An entry in a
GeneralHashTable .
This is a public class to allow overriding.
|
Method Summary | |
public boolean | equals(Object o) Implements the general Map.Entry specification.
But note that a GeneralHashTable subclass may override
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
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) |
equals | public boolean equals(Object o)(Code) | | Implements the general Map.Entry specification.
But note that a GeneralHashTable subclass may override
matches ,
so it no longer uses equals, in which case it won't be consistent
with this method, unless it is overridden.
|
hashCode | public int hashCode()(Code) | | Implements the general Map.Entry specification.
But note that a GeneralHashTable subclass may override
hash ,
so it no longer uses equals, in which case it won't be consistent
with this method, unless it is overridden.
|
|
|