Interface AggregationFinalStep<A>
-
- Type Parameters:
A
- The type of result for this aggregation.
- All Known Subinterfaces:
RangeAggregationOptionsStep<S,PDF,F,A>
,RangeAggregationRangeMoreStep<S,N,PDF,F>
,TermsAggregationOptionsStep<S,PDF,F,A>
public interface AggregationFinalStep<A>
The final step in an aggregation definition, where the aggregation can be retrieved.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchAggregation<A>
toAggregation()
Create aSearchAggregation
instance matching the definition given in the previous DSL steps.
-
-
-
Method Detail
-
toAggregation
SearchAggregation<A> toAggregation()
Create aSearchAggregation
instance matching the definition given in the previous DSL steps.- Returns:
- The
SearchAggregation
resulting from the previous DSL steps.
-
-