|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectorg.h2.result.Row
public abstract class Row
Represents a row in a table.
| Field Summary | |
|---|---|
static Row[] |
EMPTY_ARRAY
|
static int |
MEMORY_CALCULATE
|
| Constructor Summary | |
|---|---|
Row()
|
|
| Method Summary | |
|---|---|
abstract void |
commit()
This record has been committed. |
abstract int |
getByteCount(Data dummy)
Get the number of bytes required for the data. |
abstract Row |
getCopy()
Get a copy of the row that is distinct from (not equal to) this row. |
abstract int |
getSessionId()
Get session id. |
abstract Value[] |
getValueList()
Get values. |
abstract boolean |
isDeleted()
Check if the row is deleted. |
abstract boolean |
isEmpty()
Check if this is an empty row. |
abstract void |
setDeleted(boolean deleted)
Mark the row as deleted. |
abstract void |
setSessionId(int sessionId)
Set session id. |
abstract void |
setVersion(int version)
Set version. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.h2.result.SearchRow |
|---|
getColumnCount, getKey, getMemory, getValue, getVersion, setKey, setKeyAndVersion, setValue |
| Field Detail |
|---|
public static final int MEMORY_CALCULATE
public static final Row[] EMPTY_ARRAY
| Constructor Detail |
|---|
public Row()
| Method Detail |
|---|
public abstract Row getCopy()
public abstract void setVersion(int version)
version - row versionpublic abstract int getByteCount(Data dummy)
dummy - the template buffer
public abstract boolean isEmpty()
true if the row is emptypublic abstract void setDeleted(boolean deleted)
deleted - deleted flagpublic abstract void setSessionId(int sessionId)
sessionId - the session idpublic abstract int getSessionId()
public abstract void commit()
public abstract boolean isDeleted()
true if the row is deletedpublic abstract Value[] getValueList()
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||