Package adams.data.binning.algorithm
Interface FixedBinWidthBinningAlgorithm
-
- All Superinterfaces:
BinningAlgorithm
,Destroyable
,OptionHandler
,QuickInfoSupporter
- All Known Implementing Classes:
DensityBinning
public interface FixedBinWidthBinningAlgorithm extends BinningAlgorithm
Interface for binning algorithms that require a fixed bin width.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
binWidthTipText()
Returns the tip text for this property.double
getBinWidth()
Returns the bin width in use.void
setBinWidth(double value)
Sets the bin width to use.-
Methods inherited from interface adams.data.binning.algorithm.BinningAlgorithm
generateBins
-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
Methods inherited from interface adams.core.QuickInfoSupporter
getQuickInfo
-
-
-
-
Method Detail
-
setBinWidth
void setBinWidth(double value)
Sets the bin width to use.- Parameters:
value
- the bin width
-
getBinWidth
double getBinWidth()
Returns the bin width in use.- Returns:
- the bin width
-
binWidthTipText
String binWidthTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-