Package adams.data.binning.algorithm
Interface BinningAlgorithmUser
-
- All Known Implementing Classes:
ArrayBinning,BinnedNumericClassCrossValidationFoldGenerator,BinnedNumericClassRandomSplitGenerator,GroupedBinnedNumericClassCrossValidationFoldGenerator,GroupedBinnedNumericClassRandomSplitGenerator,SpreadSheetRowBinning
public interface BinningAlgorithmUserInterface for classes that use a binning algorithm.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringalgorithmTipText()Returns the tip text for this property.BinningAlgorithmgetAlgorithm()Returns the binning algorithm.voidsetAlgorithm(BinningAlgorithm value)Sets the binning algorithm.
-
-
-
Method Detail
-
setAlgorithm
void setAlgorithm(BinningAlgorithm value)
Sets the binning algorithm.- Parameters:
value- the algorithm
-
getAlgorithm
BinningAlgorithm getAlgorithm()
Returns the binning algorithm.- Returns:
- the algorithm
-
algorithmTipText
String algorithmTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-