| Package | Description |
|---|---|
| org.hibernate.search.engine.search.query.dsl | |
| org.hibernate.search.engine.search.query.dsl.spi |
| Modifier and Type | Interface and Description |
|---|---|
interface |
SearchQuerySelectStep<N extends SearchQueryOptionsStep<?,E,LOS,?,?>,R,E,LOS,PJF extends SearchProjectionFactory<R,E>,PDF extends SearchPredicateFactory>
The initial step in a query definition, where the element used to represent query hits,
i.e.
|
| Modifier and Type | Method and Description |
|---|---|
default SearchQueryWhereStep<?,E,?> |
SearchQuerySelectStep.asEntity()
Deprecated.
Use
SearchQuerySelectStep.selectEntity() instead. |
default SearchQueryWhereStep<?,R,?> |
SearchQuerySelectStep.asEntityReference()
Deprecated.
Use
SearchQuerySelectStep.selectEntityReference() instead. |
default <P> SearchQueryWhereStep<?,P,?> |
SearchQuerySelectStep.asProjection(Function<? super PJF,? extends ProjectionFinalStep<P>> projectionContributor)
Deprecated.
Use
SearchQuerySelectStep.select(Function) instead. |
default <P> SearchQueryWhereStep<?,P,?> |
SearchQuerySelectStep.asProjection(SearchProjection<P> projection)
Deprecated.
Use
SearchQuerySelectStep.select(SearchProjection) instead. |
default SearchQueryWhereStep<?,List<?>,?> |
SearchQuerySelectStep.asProjections(SearchProjection<?>... projections)
Deprecated.
Use
SearchQuerySelectStep.select(SearchProjection) instead. |
<P> SearchQueryWhereStep<?,P,?> |
SearchQuerySelectStep.select(Function<? super PJF,? extends ProjectionFinalStep<P>> projectionContributor)
Select a given projection as a representation of the search hit for each matching document.
|
SearchQueryWhereStep<?,List<?>,?> |
SearchQuerySelectStep.select(SearchProjection<?>... projections)
Select a list of projections as a representation of the search hit for each matching document.
|
<P> SearchQueryWhereStep<?,P,?> |
SearchQuerySelectStep.select(SearchProjection<P> projection)
Select a projection as a representation of the search hit for each matching document.
|
SearchQueryWhereStep<?,E,?> |
SearchQuerySelectStep.selectEntity()
Select the entity was originally indexed
as a representation of the search hit for each matching document.
|
SearchQueryWhereStep<?,R,?> |
SearchQuerySelectStep.selectEntityReference()
Select a reference to the entity that was originally indexed
as a representation of the search hit for each matching document.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractDelegatingSearchQuerySelectStep<R,E,LOS> |
class |
AbstractExtendedSearchQueryOptionsStep<S extends SearchQueryOptionsStep<S,H,LOS,SF,AF>,H,R extends SearchResult<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> |
class |
AbstractSearchQuerySelectStep<N extends SearchQueryOptionsStep<?,E,LOS,?,?>,R,E,LOS,PJF extends SearchProjectionFactory<R,E>,PDF extends SearchPredicateFactory,C> |
| Modifier and Type | Method and Description |
|---|---|
<P> SearchQueryWhereStep<?,P,?> |
AbstractDelegatingSearchQuerySelectStep.select(Function<? super SearchProjectionFactory<R,E>,? extends ProjectionFinalStep<P>> projectionContributor) |
SearchQueryWhereStep<?,List<?>,?> |
AbstractDelegatingSearchQuerySelectStep.select(SearchProjection<?>... projections) |
<P> SearchQueryWhereStep<?,P,?> |
AbstractDelegatingSearchQuerySelectStep.select(SearchProjection<P> projection) |
SearchQueryWhereStep<?,E,?> |
AbstractDelegatingSearchQuerySelectStep.selectEntity() |
SearchQueryWhereStep<?,R,?> |
AbstractDelegatingSearchQuerySelectStep.selectEntityReference() |
Copyright © 2006-2020 Red Hat, Inc. and others. Licensed under the GNU Lesser General Public License (LGPL), version 2.1 or later.