Interface ProjectionFinalStep<T>
-
- Type Parameters:
T- The type returned by the projection.
- All Known Subinterfaces:
CompositeProjectionOptionsStep<S,T>,CompositeProjectionValueStep<N,T>,DistanceToFieldProjectionOptionsStep<S,T>,DistanceToFieldProjectionValueStep<N,T>,DocumentReferenceProjectionOptionsStep<S>,EntityProjectionOptionsStep<S,E>,EntityReferenceProjectionOptionsStep<S,R>,FieldProjectionOptionsStep<S,T>,FieldProjectionValueStep<N,T>,HighlightProjectionFinalStep,HighlightProjectionOptionsStep,IdProjectionOptionsStep<S,I>,ScoreProjectionOptionsStep<S>
- All Known Implementing Classes:
CompositeProjectionOptionsStepImpl,CompositeProjectionValueStepImpl,DistanceToFieldProjectionOptionsStepImpl,DistanceToFieldProjectionValueStepImpl,DocumentReferenceProjectionOptionsStepImpl,EntityProjectionOptionsStepImpl,EntityReferenceProjectionOptionsStepImpl,FieldProjectionOptionsStepImpl,FieldProjectionValueStepImpl,HighlightProjectionOptionsStepImpl,IdProjectionOptionsStepImpl,ScoreProjectionOptionsStepImpl,StaticProjectionFinalStep
public interface ProjectionFinalStep<T>The final step in a projection definition, where the projection can be retrieved.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchProjection<T>toProjection()Create aSearchProjectioninstance matching the definition given in the previous DSL steps.
-
-
-
Method Detail
-
toProjection
SearchProjection<T> toProjection()
Create aSearchProjectioninstance matching the definition given in the previous DSL steps.- Returns:
- The
SearchProjectioninstance.
-
-