RB - the RowBuilder subtype, used for cascading return valuespublic interface RowBuilder<RB extends RowBuilder<?>>
RowInsertionBuilder,
RowUpdationBuilder| Modifier and Type | Method and Description |
|---|---|
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
|
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 checkCopyright © 2007–2019 The Apache Software Foundation. All rights reserved.