Package com.day.cq.reporting
Interface AggregateExtensions
-
public interface AggregateExtensions
This interface provides additional functionality to aggregates.- Since:
- 5.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
aggregateValue(CellValue valueToAggregate, Report report)
Aggregates the specified value.
-
-
-
Method Detail
-
aggregateValue
void aggregateValue(CellValue valueToAggregate, Report report)
Aggregates the specified value.
If an aggregate implements both
Aggregate
andAggregateExtensions
, then this method is used instead ofAggregate.aggregateValue(CellValue)
.Note that
report
may benull
for compatibility reasons.- Parameters:
valueToAggregate
- The value to aggregatereport
- The report the value is aggregated for
-
-