The Tally, Counter, WeightedTally and TimestampWeightedTally classes have reporting methods to a String. When iterating over multiple statistics to make a table, the reportHeader( and reportFooter() methods are not accessible because there is no instance yet on which to call the header or footer method. This problem is solved by making these methods static.
The
Tally
,Counter
,WeightedTally
andTimestampWeightedTally
classes have reporting methods to a String. When iterating over multiple statistics to make a table, thereportHeader(
andreportFooter()
methods are not accessible because there is no instance yet on which to call the header or footer method. This problem is solved by making these methods static.