Interface ExecutableSelectOperation.SelectWithTable<T>
- All Superinterfaces:
ExecutableSelectOperation.SelectWithQuery<T>,ExecutableSelectOperation.TerminatingSelect<T>
- All Known Subinterfaces:
ExecutableSelectOperation.ExecutableSelect<T>
- Enclosing interface:
- ExecutableSelectOperation
public static interface ExecutableSelectOperation.SelectWithTable<T>
extends ExecutableSelectOperation.SelectWithQuery<T>
Table override (optional).
-
Method Summary
Methods inherited from interface org.springframework.data.cassandra.core.ExecutableSelectOperation.SelectWithQuery
matchingMethods inherited from interface org.springframework.data.cassandra.core.ExecutableSelectOperation.TerminatingSelect
all, count, exists, first, firstValue, one, oneValue, stream
-
Method Details
-
inTable
Explicitly set thenameof the table on which to execute the query.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
ExecutableSelectOperation.SelectWithProjection. - Throws:
IllegalArgumentException- iftableis null or empty.- See Also:
-
inTable
ExecutableSelectOperation.SelectWithProjection<T> inTable(com.datastax.oss.driver.api.core.CqlIdentifier table) Explicitly set thenameof the table on which to execute the query.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
ExecutableSelectOperation.SelectWithProjection. - Throws:
IllegalArgumentException- iftableis null.- See Also:
-
CqlIdentifierExecutableSelectOperation.SelectWithProjection
-