Uses of Interface
org.hibernate.search.engine.search.projection.SearchProjection
-
-
Uses of SearchProjection in org.hibernate.search.engine.search.projection.dsl
Methods in org.hibernate.search.engine.search.projection.dsl that return SearchProjection Modifier and Type Method Description SearchProjection<T>ProjectionFinalStep. toProjection()Create aSearchProjectioninstance matching the definition given in the previous DSL steps.Methods in org.hibernate.search.engine.search.projection.dsl with parameters of type SearchProjection Modifier and Type Method Description <P1,P2,T>
CompositeProjectionOptionsStep<?,T>SearchProjectionFactory. composite(BiFunction<P1,P2,T> transformer, SearchProjection<P1> projection1, SearchProjection<P2> projection2)Create a projection that will compose a custom object based on two given projections.<T> CompositeProjectionOptionsStep<?,T>SearchProjectionFactory. composite(Function<List<?>,T> transformer, SearchProjection<?>... projections)Create a projection that will compose a custom object based on the given projections.<P,T>
CompositeProjectionOptionsStep<?,T>SearchProjectionFactory. composite(Function<P,T> transformer, SearchProjection<P> projection)Create a projection that will compose a custom object based on one given projection.default CompositeProjectionOptionsStep<?,List<?>>SearchProjectionFactory. composite(SearchProjection<?>... projections)Create a projection that will compose aListbased on the given projections.<P1,P2,P3,T>
CompositeProjectionOptionsStep<?,T>SearchProjectionFactory. composite(TriFunction<P1,P2,P3,T> transformer, SearchProjection<P1> projection1, SearchProjection<P2> projection2, SearchProjection<P3> projection3)Create a projection that will compose a custom object based on three given projections. -
Uses of SearchProjection in org.hibernate.search.engine.search.projection.dsl.spi
Methods in org.hibernate.search.engine.search.projection.dsl.spi that return SearchProjection Modifier and Type Method Description SearchProjection<T>StaticProjectionFinalStep. toProjection()Methods in org.hibernate.search.engine.search.projection.dsl.spi with parameters of type SearchProjection Modifier and Type Method Description <P1,P2,T>
CompositeProjectionOptionsStep<?,T>DelegatingSearchProjectionFactory. composite(BiFunction<P1,P2,T> transformer, SearchProjection<P1> projection1, SearchProjection<P2> projection2)<T> CompositeProjectionOptionsStep<?,T>DelegatingSearchProjectionFactory. composite(Function<List<?>,T> transformer, SearchProjection<?>... projections)<P,T>
CompositeProjectionOptionsStep<?,T>DelegatingSearchProjectionFactory. composite(Function<P,T> transformer, SearchProjection<P> projection)<P1,P2,P3,T>
CompositeProjectionOptionsStep<?,T>DelegatingSearchProjectionFactory. composite(TriFunction<P1,P2,P3,T> transformer, SearchProjection<P1> projection1, SearchProjection<P2> projection2, SearchProjection<P3> projection3) -
Uses of SearchProjection in org.hibernate.search.engine.search.projection.spi
Methods in org.hibernate.search.engine.search.projection.spi that return SearchProjection Modifier and Type Method Description default SearchProjection<Double>DistanceToFieldProjectionBuilder. build()<P> SearchProjection<P>DistanceToFieldProjectionBuilder. build(ProjectionAccumulator.Provider<Double,P> accumulatorProvider)default SearchProjection<T>FieldProjectionBuilder. build()<P> SearchProjection<P>FieldProjectionBuilder. build(ProjectionAccumulator.Provider<T,P> accumulatorProvider)SearchProjection<T>SearchProjectionBuilder. build()Methods in org.hibernate.search.engine.search.projection.spi with parameters of type SearchProjection Modifier and Type Method Description <P1,P2,P>
CompositeProjectionBuilder<P>SearchProjectionBuilderFactory. composite(BiFunction<P1,P2,P> transformer, SearchProjection<P1> projection1, SearchProjection<P2> projection2)<P> CompositeProjectionBuilder<P>SearchProjectionBuilderFactory. composite(Function<List<?>,P> transformer, SearchProjection<?>... projections)<P1,P>
CompositeProjectionBuilder<P>SearchProjectionBuilderFactory. composite(Function<P1,P> transformer, SearchProjection<P1> projection)<P1,P2,P3,P>
CompositeProjectionBuilder<P>SearchProjectionBuilderFactory. composite(TriFunction<P1,P2,P3,P> transformer, SearchProjection<P1> projection1, SearchProjection<P2> projection2, SearchProjection<P3> projection3) -
Uses of SearchProjection in org.hibernate.search.engine.search.query.dsl
Methods in org.hibernate.search.engine.search.query.dsl with parameters of type SearchProjection Modifier and Type Method Description default <P> SearchQueryWhereStep<?,P,LOS,?>SearchQuerySelectStep. asProjection(SearchProjection<P> projection)Deprecated.UseSearchQuerySelectStep.select(SearchProjection)instead.default SearchQueryWhereStep<?,List<?>,LOS,?>SearchQuerySelectStep. asProjections(SearchProjection<?>... projections)Deprecated.UseSearchQuerySelectStep.select(SearchProjection)instead.SearchQueryWhereStep<?,List<?>,LOS,?>SearchQuerySelectStep. select(SearchProjection<?>... projections)Select a list of projections as a representation of the search hit for each matching document.<P> SearchQueryWhereStep<?,P,LOS,?>SearchQuerySelectStep. select(SearchProjection<P> projection)Select a projection as a representation of the search hit for each matching document. -
Uses of SearchProjection in org.hibernate.search.engine.search.query.dsl.spi
Methods in org.hibernate.search.engine.search.query.dsl.spi with parameters of type SearchProjection Modifier and Type Method Description SearchQueryWhereStep<?,List<?>,LOS,?>AbstractDelegatingSearchQuerySelectStep. select(SearchProjection<?>... projections)<P> SearchQueryWhereStep<?,P,LOS,?>AbstractDelegatingSearchQuerySelectStep. select(SearchProjection<P> projection) -
Uses of SearchProjection in org.hibernate.search.engine.search.query.spi
Methods in org.hibernate.search.engine.search.query.spi with parameters of type SearchProjection Modifier and Type Method Description SearchQueryBuilder<List<?>,C>SearchQueryBuilderFactory. select(BackendSessionContext sessionContext, LoadingContextBuilder<?,?,?> loadingContextBuilder, SearchProjection<?>... projections)<P> SearchQueryBuilder<P,C>SearchQueryBuilderFactory. select(BackendSessionContext sessionContext, LoadingContextBuilder<?,?,?> loadingContextBuilder, SearchProjection<P> projection)
-