Interface FillNoFillSupport
- All Known Implementing Classes:
Count,ErrorBars,Jitter,Kurtosis,LinearInterpolation,LoessInterpolation,Max,Mean,Median,Min,Optimized,OptimizedWithLastSample,PopulationVariance,RMS,Skewness,StandardDeviation,Statistics,SummaryStatsPostProcessor,Variance
public interface FillNoFillSupport
Add ability for PostProcessors to support optional behavior where we fill empty bins with values from the previous bins.
For historical reasons, by default, we inherit values from the previous bins
We override this behavior by calling doNotInheritValuesFromPrevioisBins
- Author:
- mshankar
-
Method Summary
Modifier and TypeMethodDescriptionvoidbooleanFor some post processors, we do fill empty bins but with zeroes instead.
-
Method Details
-
doNotInheritValuesFromPrevioisBins
void doNotInheritValuesFromPrevioisBins() -
zeroOutEmptyBins
boolean zeroOutEmptyBins()For some post processors, we do fill empty bins but with zeroes instead.- Returns:
- boolean True or False
-