| java.lang.Object org.axiondb.engine.rows.BaseRow
All known Subclasses: org.axiondb.engine.rows.JoinedRow, org.axiondb.engine.rows.LazyRow, org.axiondb.engine.rows.RowView, org.axiondb.engine.rows.SimpleRow,
BaseRow | abstract public class BaseRow implements Row(Code) | | An abstract base implementation of
Row , providing
BaseRow.equals equals ,
BaseRow.hashCode hashCode and
BaseRow.toString toString implementations.
version: $Revision: 1.3 $ $Date: 2005/12/22 09:02:30 $ author: Rodney Waldhoff author: Ahimanikya Satapathy |
Field Summary | |
protected int | _hash |
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 int | getIdentifier() | public int | hashCode() Return a hash code for me, in keeping with the generic
Object.hashCode contract. | public void | setIdentifier(int id) | public String | toString() Returns a simple
String representation of me, perhaps suitable for
debugging purposes. |
_hash | protected int _hash(Code) | | Cache the hash code for the string
|
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.
|
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) | | |
toString | public String toString()(Code) | | Returns a simple
String representation of me, perhaps suitable for
debugging purposes.
|
|
|