Package lumis.portal.bigdata.query
Interface IValueAggregationResult
-
- All Superinterfaces:
IAggregationResult
- All Known Implementing Classes:
AvgAggregationResult
,CardinalityAggregationResult
,MaxAggregationResult
,SumAggregationResult
,ValueCountAggregationResult
@StableMinor(version="14.0", sinceVersion="11.0") public interface IValueAggregationResult extends IAggregationResult
Value aggregation result. Typically returned by single-value aggregations (like min, for example).- 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 Object
getValue()
Returns the value of this aggregation.-
Methods inherited from interface lumis.portal.bigdata.query.IAggregationResult
getId
-
-
-
-
Method Detail
-
getValue
Object getValue()
Returns the value of this aggregation. The returned object type depends on how aggregation is performed. For example, aMinAggregation
performed in an integer field will produce an integer return value and anAvgAggregation
will always produce a double value.- Returns:
- the value of this aggregation.
- Since:
- 11.0.0
-
-