| Modifier and Type | Field and Description |
|---|---|
protected int |
_hash
Cache the hash code for the string
|
| Constructor and Description |
|---|
BaseRow() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.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) |
java.lang.String |
toString()
Returns a simple
String representation of me, perhaps suitable for
debugging purposes. |
public int hashCode()
Object.hashCode()
contract.public boolean equals(java.lang.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.
public java.lang.String toString()
String representation of me, perhaps suitable for
debugging purposes.toString in class java.lang.Objectpublic int getIdentifier()
getIdentifier in interface Rowpublic void setIdentifier(int id)
setIdentifier in interface Row