Package adams.data.binning.algorithm
Interface FixedNumBinsBinningAlgorithm
-
- All Superinterfaces:
BinningAlgorithm
,Destroyable
,OptionHandler
,QuickInfoSupporter
- All Known Implementing Classes:
FrequencyBinning
,ManualBinning
public interface FixedNumBinsBinningAlgorithm extends BinningAlgorithm
Interface for binning algorithms that require to specify the number of bins.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getNumBins()
Returns the number of bins to use.String
numBinsTipText()
Returns the tip text for this property.void
setNumBins(int value)
Sets the number of bins 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
-
setNumBins
void setNumBins(int value)
Sets the number of bins to use.- Parameters:
value
- the number of bins
-
getNumBins
int getNumBins()
Returns the number of bins to use.- Returns:
- the number of bins
-
numBinsTipText
String numBinsTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-