Interface TableMutationBuilder<M extends TableMutation<?>>
-
- All Known Subinterfaces:
RestrictedTableMutationBuilder<O,M>
,TableDeleteBuilder
,TableInsertBuilder
,TableUpdateBuilder<O>
- All Known Implementing Classes:
AbstractRestrictedTableMutationBuilder
,AbstractTableInsertBuilder
,AbstractTableMutationBuilder
,AbstractTableUpdateBuilder
,CollectionRowDeleteBuilder
,CollectionRowDeleteByUpdateSetNullBuilder
,TableDeleteBuilderSkipped
,TableDeleteBuilderStandard
,TableInsertBuilderStandard
,TableInsertReturningBuilder
,TableMergeBuilder
,TableUpdateBuilderSkipped
,TableUpdateBuilderStandard
,TableUpdateReturningBuilder
public interface TableMutationBuilder<M extends TableMutation<?>>
Generalized contract for buildingTableMutation
instances
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description M
buildMutation()
Build the mutation descriptorMutatingTableReference
getMutatingTable()
Reference (in the SQL AST sense) to the mutating table
-
-
-
Field Detail
-
NULL
static final String NULL
Constant for `null`- See Also:
- Constant Field Values
-
-
Method Detail
-
getMutatingTable
MutatingTableReference getMutatingTable()
Reference (in the SQL AST sense) to the mutating table
-
buildMutation
M buildMutation()
Build the mutation descriptor
-
-