org.axiondb.engine.rowcollection
public static class IntHashMap.Entry extends Object
Constructor Summary | |
---|---|
protected | Entry() Default constructor (allows sub-classing). |
Method Summary | |
---|---|
boolean | equals(Object that)
Indicates if this entry is considered equals to the specified entry (default
object equality to ensure symetry)
|
int | getKey()
Returns the key for this entry.
|
IntHashMap.Entry | getNextEntry()
Returns the entry after this one.
|
IntHashMap.Entry | getPreviousEntry()
Returns the entry before this one.
|
Object | getValue()
Returns the value for this entry.
|
int | hashCode()
Returns the hash code for this entry.
|
Object | setValue(Object value)
Sets the value for this entry.
|
Parameters: that the object to test for equality.
Returns: true
if both entry have equal keys and values.
false
otherwise.
Returns: the entry key.
Returns: the next entry.
Returns: the previous entry.
Returns: the entry value.
Returns: this entry hash code.
Parameters: value the new value.
Returns: the previous value.