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
matching
Methods inherited from interface org.springframework.data.cassandra.core.ExecutableSelectOperation.TerminatingSelect
all, count, exists, first, firstValue, one, oneValue, stream
-
Method Details
-
inTable
Explicitly set thename
of the table on which to execute the query.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
ExecutableSelectOperation.SelectWithProjection
. - Throws:
IllegalArgumentException
- iftable
is null or empty.- See Also:
-
inTable
ExecutableSelectOperation.SelectWithProjection<T> inTable(com.datastax.oss.driver.api.core.CqlIdentifier table) Explicitly set thename
of the table on which to execute the query.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
ExecutableSelectOperation.SelectWithProjection
. - Throws:
IllegalArgumentException
- iftable
is null.- See Also:
-
CqlIdentifier
ExecutableSelectOperation.SelectWithProjection
-