|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.axiondb.engine.rows.BaseRow
public abstract class BaseRow
An abstract base implementation of Row
,
providing equals
,
hashCode
and
toString
implementations.
Constructor Summary | |
---|---|
BaseRow()
|
Method Summary | |
---|---|
boolean |
equals(Object that)
Returns true iff that
is a Row with the same number of
fields and each is equal to the corresponding
field in me. |
int |
getIdentifier()
|
int |
hashCode()
Return a hash code for me, in keeping with the generic Object.hashCode()
contract. |
void |
setIdentifier(int id)
|
String |
toString()
Returns a simple String representation
of me, perhaps suitable for debugging purposes. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.axiondb.Row |
---|
get, set, size |
Constructor Detail |
---|
public BaseRow()
Method Detail |
---|
public int hashCode()
Object.hashCode()
contract.
hashCode
in interface Row
hashCode
in class Object
public boolean equals(Object that)
true
iff that
is a Row
with the same number of
fields and each is equal to the corresponding
field in me.
Adheres to the generic Object.equals(java.lang.Object)
contract.
equals
in interface Row
equals
in class Object
public String toString()
String
representation
of me, perhaps suitable for debugging purposes.
toString
in class Object
public int getIdentifier()
getIdentifier
in interface Row
public void setIdentifier(int id)
setIdentifier
in interface Row
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |