Interface ProjectionFinalStep<T>
-
- Type Parameters:
T- The type returned by the projection.
- All Known Subinterfaces:
CompositeProjectionOptionsStep<S,T>,DistanceToFieldProjectionOptionsStep<S,T>,DistanceToFieldProjectionValueStep<N,T>,DocumentReferenceProjectionOptionsStep<S>,EntityProjectionOptionsStep<S,E>,EntityReferenceProjectionOptionsStep<S,R>,FieldProjectionOptionsStep<S,T>,FieldProjectionValueStep<N,T>,ScoreProjectionOptionsStep<S>
- All Known Implementing Classes:
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.
-
-