Interface BindingContext
- All Known Subinterfaces:
IdentifierBindingContext<I>,MarkerBindingContext,PropertyBindingContext,RoutingBindingContext,TypeBindingContext,ValueBindingContext<V>
public interface BindingContext
-
Method Summary
Modifier and TypeMethodDescriptionorg.hibernate.search.engine.environment.bean.BeanResolverdefault ObjectDeprecated.default <T> TDeprecated.Useparams()instead.paramOptional(String name) Deprecated.Useparams()instead.default <T> Optional<T> paramOptional(String name, Class<T> paramType) Deprecated.Useparams()instead.org.hibernate.search.engine.search.common.NamedValuesparams()
-
Method Details
-
beanResolver
org.hibernate.search.engine.environment.bean.BeanResolver beanResolver()- Returns:
- A bean provider, allowing the retrieval of beans, including CDI/Spring DI beans when in the appropriate environment.
-
param
Deprecated.Useparams()instead.- Parameters:
name- The name of the param- Returns:
- Get a param defined for the binder by the given name
- Throws:
org.hibernate.search.util.common.SearchException- if it does not exist a param having such name
-
param
Deprecated.Useparams()instead.- Type Parameters:
T- The type of the parameter.- Parameters:
name- The name of the paramparamType- The type of the parameter.- Returns:
- Get a param defined for the binder by the given name
- Throws:
org.hibernate.search.util.common.SearchException- if it does not exist a param having such name
-
paramOptional
Deprecated.Useparams()instead.- Parameters:
name- The name of the param- Returns:
- Get an optional param defined for the binder by the given name, a param having such name may either exist or not.
-
paramOptional
Deprecated.Useparams()instead.- Type Parameters:
T- The type of the parameter.- Parameters:
name- The name of the paramparamType- The type of the parameter.- Returns:
- Get an optional param defined for the binder by the given name, a param having such name may either exist or not.
-
params
org.hibernate.search.engine.search.common.NamedValues params()- Returns:
- Parameters defined for the binder.
- See Also:
-
params()instead.