Uses of Interface
org.hibernate.search.mapper.orm.scope.SearchScope
-
Packages that use SearchScope Package Description org.hibernate.search.mapper.orm.mapping org.hibernate.search.mapper.orm.session -
-
Uses of SearchScope in org.hibernate.search.mapper.orm.mapping
Methods in org.hibernate.search.mapper.orm.mapping that return SearchScope Modifier and Type Method Description default <T> SearchScope<T>
SearchMapping. scope(Class<T> type)
Create aSearchScope
limited to the given type.default <T> SearchScope<T>
SearchMapping. scope(Class<T> expectedSuperType, String entityName)
Create aSearchScope
limited to entity types referenced by their name.<T> SearchScope<T>
SearchMapping. scope(Class<T> expectedSuperType, Collection<String> entityNames)
Create aSearchScope
limited to entity types referenced by their name.<T> SearchScope<T>
SearchMapping. scope(Collection<? extends Class<? extends T>> types)
Create aSearchScope
limited to the given types. -
Uses of SearchScope in org.hibernate.search.mapper.orm.session
Methods in org.hibernate.search.mapper.orm.session that return SearchScope Modifier and Type Method Description default <T> SearchScope<T>
SearchSession. scope(Class<T> type)
Create aSearchScope
limited to the given type.default <T> SearchScope<T>
SearchSession. scope(Class<T> expectedSuperType, String entityName)
Create aSearchScope
limited to entity types referenced by their name.<T> SearchScope<T>
SearchSession. scope(Class<T> expectedSuperType, Collection<String> entityNames)
Create aSearchScope
limited to entity types referenced by their name.<T> SearchScope<T>
SearchSession. scope(Collection<? extends Class<? extends T>> types)
Create aSearchScope
limited to the given types.Methods in org.hibernate.search.mapper.orm.session with parameters of type SearchScope Modifier and Type Method Description <T> SearchQuerySelectStep<?,EntityReference,T,SearchLoadingOptionsStep,?,?>
SearchSession. search(SearchScope<T> scope)
Initiate the building of a search query.
-