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).
-
Method Summary
Methods inherited from interface org.springframework.data.cassandra.core.ExecutableInsertOperation.InsertWithOptions
withOptions
Methods inherited from interface org.springframework.data.cassandra.core.ExecutableInsertOperation.TerminatingInsert
one
-
Method Details
-
inTable
Explicitly set thename
of the table.Skip this step to use the default table derived from the
domain type
.- Parameters:
table
-name
of the table; must not be null or empty.- Returns:
- new instance of
ExecutableInsertOperation.InsertWithOptions
. - Throws:
IllegalArgumentException
- iftable
is null or empty.- See Also:
-
inTable
ExecutableInsertOperation.InsertWithOptions<T> inTable(com.datastax.oss.driver.api.core.CqlIdentifier table) Explicitly set thename
of the table.Skip this step to use the default table derived from the
domain type
.- Parameters:
table
-name
of the table; must not be null.- Returns:
- new instance of
ExecutableInsertOperation.InsertWithOptions
. - Throws:
IllegalArgumentException
- iftable
is null.- See Also:
-
CqlIdentifier
ExecutableInsertOperation.InsertWithOptions
-