Uses of Interface
org.hibernate.search.util.common.function.TriFunction
Packages that use TriFunction
Package
Description
-
Uses of TriFunction in org.hibernate.search.engine.search.projection.dsl
Methods in org.hibernate.search.engine.search.projection.dsl with parameters of type TriFunctionModifier and TypeMethodDescription<V> CompositeProjectionValueStep
<?, V> CompositeProjectionFrom3AsStep.as
(TriFunction<V1, V2, V3, V> transformer) Defines the result of the composite projection as the result of applying the given function to the three inner projections defined so far.default <P1,
P2, P3, T>
CompositeProjectionOptionsStep<?, T> SearchProjectionFactory.composite
(TriFunction<P1, P2, P3, T> transformer, ProjectionFinalStep<P1> dslFinalStep1, ProjectionFinalStep<P2> dslFinalStep2, ProjectionFinalStep<P3> dslFinalStep3) Deprecated.default <P1,
P2, P3, T>
CompositeProjectionOptionsStep<?, T> SearchProjectionFactory.composite
(TriFunction<P1, P2, P3, T> transformer, SearchProjection<P1> projection1, SearchProjection<P2> projection2, SearchProjection<P3> projection3) Deprecated.Use.composite().from( projection1, projection2, projection3 ).as( transformer )
instead. -
Uses of TriFunction in org.hibernate.search.engine.search.projection.spi
Methods in org.hibernate.search.engine.search.projection.spi with parameters of type TriFunctionModifier and TypeMethodDescriptionstatic <P1,
P2, P3, V>
ProjectionCompositor<Object[], V> ProjectionCompositor.from
(TriFunction<P1, P2, P3, V> transformer)
.composite().from( dslFinalStep1, dslFinalStep2, dslFinalStep3 ).as( transformer )
instead.