| org.axiondb.Row
All known Subclasses: org.axiondb.engine.rows.LazyRow, org.axiondb.engine.rows.RowView, org.axiondb.engine.rows.BaseRow,
Row | public interface Row (Code) | | Contains the data for a single row in a table, view, result set, etc.
version: $Revision: 1.15 $ $Date: 2004/08/27 03:21:21 $ author: Rodney Waldhoff author: Ahimanikya Satapathy |
Method Summary | |
public 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. | public Object | get(int i) Returns the value of the field at i (zero indexed). | public int | getIdentifier() | public int | hashCode() Return a hash code for me, in keeping with the generic
Object.hashCode contract. | public void | set(int i, Object val) Sets the value of the field at i (zero indexed). | public void | setIdentifier(int id) | public int | size() Returns the number of fields in me. |
equals | public boolean equals(Object that)(Code) | | Returns 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 contract.
|
get | public Object get(int i)(Code) | | Returns the value of the field at i (zero indexed).
|
getIdentifier | public int getIdentifier()(Code) | | |
hashCode | public int hashCode()(Code) | | Return a hash code for me, in keeping with the generic
Object.hashCode contract.
|
setIdentifier | public void setIdentifier(int id)(Code) | | |
size | public int size()(Code) | | Returns the number of fields in me.
|
|
|