org.axiondb
public interface Row
Version: $Revision: 1.15 $ $Date: 2004/08/27 03:21:21 $
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.
|
Object | get(int i)
Returns the value of the field at i (zero indexed). |
int | getIdentifier() |
int | hashCode()
Return a hash code for me, in keeping with the generic Object#hashCode
contract. |
void | set(int i, Object val)
Sets the value of the field at i (zero indexed). |
void | setIdentifier(int id) |
int | size()
Returns the number of fields in me. |
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#equalscontract.