Interface ExecutableInsertOperation.InsertWithTable<T>
- All Superinterfaces:
ExecutableInsertOperation.InsertWithOptions<T>, ExecutableInsertOperation.TerminatingInsert<T>
- All Known Subinterfaces:
ExecutableInsertOperation.ExecutableInsert<T>
- Enclosing interface:
ExecutableInsertOperation
public static interface ExecutableInsertOperation.InsertWithTable<T>
extends ExecutableInsertOperation.InsertWithOptions<T>
Table override (optional).
- Since:
- 2.1
- Author:
- Mark Paluch, John Blum
-
Method Summary
Methods inherited from interface ExecutableInsertOperation.InsertWithOptions
withOptionsMethods inherited from interface ExecutableInsertOperation.TerminatingInsert
one
-
Method Details
-
inTable
Explicitly set thenameof the table.Skip this step to use the default table derived from the
domain type.- Parameters:
table-nameof the table; must not be null or empty.- Returns:
- new instance of
ExecutableInsertOperation.InsertWithOptions. - Throws:
IllegalArgumentException- iftableis null or empty.- See Also:
-
inTable
@Contract("_ -> new") ExecutableInsertOperation.InsertWithOptions<T> inTable(com.datastax.oss.driver.api.core.CqlIdentifier table) Explicitly set thenameof the table.Skip this step to use the default table derived from the
domain type.- Parameters:
table-nameof the table; must not be null.- Returns:
- new instance of
ExecutableInsertOperation.InsertWithOptions. - Throws:
IllegalArgumentException- iftableis null.- See Also:
-