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).
- Since:
- 1.1
- Author:
- Mark Paluch, Mikhail Polivakha
-
Method Summary
Modifier and TypeMethodDescriptionExplicitly set thenameof the table on which to perform the query.from(SqlIdentifier table) Explicitly set thenameof the table on which to perform the query.Methods inherited from interface ReactiveSelectOperation.SelectWithQuery
matching, withFetchSize
-
Method Details
-
from
Explicitly set thenameof the table on which to perform 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
ReactiveSelectOperation.SelectWithProjection. - Throws:
IllegalArgumentException- iftableis null or empty.- See Also:
-
from
Explicitly set thenameof the table on which to perform 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
ReactiveSelectOperation.SelectWithProjection. - Throws:
IllegalArgumentException- iftableis null.- See Also:
-