Class SumMeasure
java.lang.Object
com.invirgance.convirgance.olap.Measure
com.invirgance.convirgance.olap.measures.SumMeasure
Support for constructing sum measures from metrics.
- Author:
- jbanes
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor that specifies the summing function but leaves the name and the metric fields unassigned.SumMeasure
(String name, Metric metric) Constructs a SumMeasure with a specified name and metric. -
Method Summary
Methods inherited from class com.invirgance.convirgance.olap.Measure
getFunction, getMetric, getName, getStar, setFunction, setMetric, setName
-
Constructor Details
-
SumMeasure
public SumMeasure()Default constructor that specifies the summing function but leaves the name and the metric fields unassigned. -
SumMeasure
Constructs a SumMeasure with a specified name and metric.- Parameters:
name
- the name assigned to the SumMeasure as a String.metric
- the metric being summed.
-