Interface ReactiveSelectOperation.SelectWithTable<T>
- All Superinterfaces:
ReactiveSelectOperation.SelectWithQuery<T>
,ReactiveSelectOperation.TerminatingSelect<T>
- All Known Subinterfaces:
ReactiveSelectOperation.ReactiveSelect<T>
- Enclosing interface:
- ReactiveSelectOperation
public static interface ReactiveSelectOperation.SelectWithTable<T>
extends ReactiveSelectOperation.SelectWithQuery<T>
Table override (optional).
-
Method Summary
Methods inherited from interface org.springframework.data.cassandra.core.ReactiveSelectOperation.SelectWithQuery
matching
-
Method Details
-
inTable
Explicitly set thename
of the table on which to perform 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
ReactiveSelectOperation.SelectWithProjection
. - Throws:
IllegalArgumentException
- iftable
is null or empty.- See Also:
-
inTable
ReactiveSelectOperation.SelectWithProjection<T> inTable(com.datastax.oss.driver.api.core.CqlIdentifier table) Explicitly set thename
of the table on which to perform 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
ReactiveSelectOperation.SelectWithProjection
. - Throws:
IllegalArgumentException
- iftable
is null.- See Also:
-
CqlIdentifier
ReactiveSelectOperation.SelectWithProjection
-