Interface SearchLoadingContextBuilder<R,E,LOS>
-
- Type Parameters:
R
- The type of entity references.E
- The type of loaded entities.LOS
- The type of the initial step of the loading options definition DSL accessible throughSearchQueryOptionsStep.loading(Consumer)
.
public interface SearchLoadingContextBuilder<R,E,LOS>
A builder forSearchLoadingContext
, allowing to change the parameters of object loading while a query is being built.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchLoadingContext<R,E>
build()
LOS
toAPI()
-
-
-
Method Detail
-
toAPI
LOS toAPI()
- Returns:
- The inital step of the loading options definition DSL passed to user-defined consumers added through
SearchQueryOptionsStep.loading(Consumer)
.
-
build
SearchLoadingContext<R,E> build()
- Returns:
- The configured loading context.
-
-