Uses of Interface
org.hibernate.search.engine.search.sort.dsl.SearchSortFactory
-
-
Uses of SearchSortFactory in org.hibernate.search.backend.elasticsearch
Methods in org.hibernate.search.backend.elasticsearch with parameters of type SearchSortFactory Modifier and Type Method Description Optional<ElasticsearchSearchSortFactory>
ElasticsearchExtension. extendOptional(SearchSortFactory original, SearchSortDslContext<?,?> dslContext)
Attempt to extend a given factory, returning an emptyOptional
in case of failure. -
Uses of SearchSortFactory in org.hibernate.search.backend.elasticsearch.search.sort.dsl
Subinterfaces of SearchSortFactory in org.hibernate.search.backend.elasticsearch.search.sort.dsl Modifier and Type Interface Description interface
ElasticsearchSearchSortFactory
A factory for search sorts with some Elasticsearch-specific methods. -
Uses of SearchSortFactory in org.hibernate.search.backend.lucene
Methods in org.hibernate.search.backend.lucene with parameters of type SearchSortFactory Modifier and Type Method Description Optional<LuceneSearchSortFactory>
LuceneExtension. extendOptional(SearchSortFactory original, SearchSortDslContext<?,?> dslContext)
Attempt to extend a given factory, returning an emptyOptional
in case of failure. -
Uses of SearchSortFactory in org.hibernate.search.backend.lucene.search.sort.dsl
Subinterfaces of SearchSortFactory in org.hibernate.search.backend.lucene.search.sort.dsl Modifier and Type Interface Description interface
LuceneSearchSortFactory
A factory for search sorts with some Lucene-specific methods. -
Uses of SearchSortFactory in org.hibernate.search.engine.mapper.scope.spi
Methods in org.hibernate.search.engine.mapper.scope.spi that return SearchSortFactory Modifier and Type Method Description SearchSortFactory
MappedIndexScope. sort()
-
Uses of SearchSortFactory in org.hibernate.search.engine.search.query.dsl
Classes in org.hibernate.search.engine.search.query.dsl with type parameters of type SearchSortFactory Modifier and Type Interface Description interface
SearchQueryOptionsStep<S extends SearchQueryOptionsStep<?,H,LOS,SF,AF>,H,LOS,SF extends SearchSortFactory,AF extends SearchAggregationFactory>
The final step in a query definition, where optional parameters such assorts
can be set, and where the query can beexecuted
orretrieved as an object
. -
Uses of SearchSortFactory in org.hibernate.search.engine.search.query.dsl.spi
Classes in org.hibernate.search.engine.search.query.dsl.spi with type parameters of type SearchSortFactory Modifier and Type Class Description class
AbstractExtendedSearchQueryOptionsStep<S extends SearchQueryOptionsStep<S,H,LOS,SF,AF>,H,R extends SearchResult<H>,SC extends SearchScroll<H>,LOS,PDF extends SearchPredicateFactory,SF extends SearchSortFactory,AF extends SearchAggregationFactory,C>
class
AbstractSearchQueryOptionsStep<S extends SearchQueryOptionsStep<S,H,LOS,SF,AF>,H,LOS,PDF extends SearchPredicateFactory,SF extends SearchSortFactory,AF extends SearchAggregationFactory,C>
Methods in org.hibernate.search.engine.search.query.dsl.spi with parameters of type SearchSortFactory Modifier and Type Method Description protected abstract SF
AbstractSearchQueryOptionsStep. extendSortFactory(SearchSortFactory sortFactory)
-
Uses of SearchSortFactory in org.hibernate.search.engine.search.sort.dsl
Subinterfaces of SearchSortFactory in org.hibernate.search.engine.search.sort.dsl Modifier and Type Interface Description interface
ExtendedSearchSortFactory<PDF extends SearchPredicateFactory>
A base interface for subtypes ofSearchSortFactory
allowing to easily override the predicate factory type for all relevant methods.Methods in org.hibernate.search.engine.search.sort.dsl that return SearchSortFactory Modifier and Type Method Description SearchSortFactory
SortThenStep. then()
Start defining another sort, to be applied after the current one.Methods in org.hibernate.search.engine.search.sort.dsl with parameters of type SearchSortFactory Modifier and Type Method Description Optional<T>
SearchSortFactoryExtension. extendOptional(SearchSortFactory original, SearchSortDslContext<?,?> dslContext)
Attempt to extend a given factory, returning an emptyOptional
in case of failure.Method parameters in org.hibernate.search.engine.search.sort.dsl with type arguments of type SearchSortFactory Modifier and Type Method Description SortThenStep
SearchSortFactoryExtensionIfSupportedMoreStep. orElse(Function<SearchSortFactory,? extends SortFinalStep> sortContributor)
If no extension passed toSearchSortFactoryExtensionIfSupportedStep.ifSupported(SearchSortFactoryExtension, Function)
was supported so far, apply the given consumer to the current (non-extended)SearchSortFactory
; otherwise return the sort created in the first succeedingifSupported
call. -
Uses of SearchSortFactory in org.hibernate.search.engine.search.sort.dsl.spi
Classes in org.hibernate.search.engine.search.sort.dsl.spi that implement SearchSortFactory Modifier and Type Class Description class
DelegatingSearchSortFactory<PDF extends SearchPredicateFactory>
A delegatingSearchSortFactory
.Methods in org.hibernate.search.engine.search.sort.dsl.spi that return SearchSortFactory Modifier and Type Method Description protected SearchSortFactory
DelegatingSearchSortFactory. delegate()
SearchSortFactory
AbstractSortThenStep. then()
Constructors in org.hibernate.search.engine.search.sort.dsl.spi with parameters of type SearchSortFactory Constructor Description DelegatingSearchSortFactory(SearchSortFactory delegate, SearchSortDslContext<?,? extends PDF> dslContext)
-
Uses of SearchSortFactory in org.hibernate.search.mapper.orm.scope
Methods in org.hibernate.search.mapper.orm.scope that return SearchSortFactory Modifier and Type Method Description SearchSortFactory
SearchScope. sort()
Initiate the building of a search sort. -
Uses of SearchSortFactory in org.hibernate.search.mapper.pojo.scope.spi
Methods in org.hibernate.search.mapper.pojo.scope.spi that return SearchSortFactory Modifier and Type Method Description SearchSortFactory
PojoScopeDelegate. sort()
-