Interface ExecutableUpdateOperation.UpdateWithTable
- All Known Subinterfaces:
ExecutableUpdateOperation.ExecutableUpdate
- Enclosing interface:
ExecutableUpdateOperation
public static interface ExecutableUpdateOperation.UpdateWithTable
Table override (optional).
- Since:
- 2.1
- Author:
- Mark Paluch, John Blum
-
Method Details
-
inTable
Explicitly set thenameof the table on which to execute the update.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
ExecutableUpdateOperation.UpdateWithQuery. - Throws:
IllegalArgumentException- iftableis null or empty.- See Also:
-
inTable
@Contract("_ -> new") ExecutableUpdateOperation.UpdateWithQuery inTable(com.datastax.oss.driver.api.core.CqlIdentifier table) Explicitly set thenameof the table on which to execute the update.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
ExecutableUpdateOperation.UpdateWithQuery. - Throws:
IllegalArgumentException- iftableis null.- See Also:
-