|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
RB - the RowBuilder subtype, used for cascading return valuespublic interface RowBuilder<RB extends RowBuilder<?>>
Abstract interface for objects that build rows, either for eg. insert or update purposes.
RowInsertionBuilder,
RowUpdationBuilder| Method Summary | |
|---|---|
Table |
getTable()
Gets the table that this row builder pertains to. |
boolean |
isSet(Column column)
Determines if a column's value has been explicitly specified or not. |
Row |
toRow()
Gets the built record represented as a Row object. |
RB |
value(Column column,
Object value)
Sets the value of a column |
RB |
value(Column column,
Object value,
Style style)
Sets the value of a column |
RB |
value(int columnIndex,
Object value)
Sets the value of a column, by column index |
RB |
value(int columnIndex,
Object value,
Style style)
Sets the value of a column, by column index |
RB |
value(String columnName,
Object value)
Sets the value of a column, by column name |
RB |
value(String columnName,
Object value,
Style style)
Sets the value and the style of this value of a column, by column name |
| Method Detail |
|---|
Table getTable()
RB value(int columnIndex,
Object value)
columnIndex - value -
RB value(int columnIndex,
Object value,
Style style)
columnIndex - value - style -
RB value(Column column,
Object value)
column - value -
RB value(Column column,
Object value,
Style style)
column - value - style -
RB value(String columnName,
Object value)
columnName - value -
RB value(String columnName,
Object value,
Style style)
columnName - value - style -
Row toRow()
Row object.
Row object as it will appear if committed and queried.boolean isSet(Column column)
column - the column to check
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||