Package lumis.portal.bigdata.query
Interface ISubAggregationAwareAggregationResult
-
- All Superinterfaces:
IAggregationResult
- All Known Subinterfaces:
INestedObjectAggregationResult
- All Known Implementing Classes:
AbstractSubAggregationAwareAggregationResult
@StableMinor(version="14.0", sinceVersion="11.0") public interface ISubAggregationAwareAggregationResult extends IAggregationResult
An aggregation result that contains sub aggregations.- Since:
- 11.0.0
- Version:
- $Revision: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getDocCount()
Returns the document count at this aggregation.Map<String,IAggregationResult>
getSubAggregations()
Returns the sub aggregations of this aggregation.-
Methods inherited from interface lumis.portal.bigdata.query.IAggregationResult
getId
-
-
-
-
Method Detail
-
getDocCount
long getDocCount()
Returns the document count at this aggregation.- Returns:
- the document count at this aggregation.
- Since:
- 11.0.0
-
getSubAggregations
Map<String,IAggregationResult> getSubAggregations()
Returns the sub aggregations of this aggregation.- Returns:
- the sub aggregations of this aggregation.
- Since:
- 11.0.0
-
-