Interface TrainableColumnFinder
-
- All Superinterfaces:
ColumnFinder,QuickInfoSupporter
- All Known Implementing Classes:
AbstractFilteredColumnFinder,AbstractTrainableColumnFinder,Invert,MultiColumnFinder,RowFilteredColumnFinder
public interface TrainableColumnFinder extends ColumnFinder
Interface forColumnFinderalgorithms that can be trained.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisColumnFinderTrained()Checks whether the column finder has been trained.booleantrainColumnFinder(SpreadSheet data)Trains the column finder with the specified spreadsheet.-
Methods inherited from interface adams.data.spreadsheet.columnfinder.ColumnFinder
findColumns
-
Methods inherited from interface adams.core.QuickInfoSupporter
getQuickInfo
-
-
-
-
Method Detail
-
trainColumnFinder
boolean trainColumnFinder(SpreadSheet data)
Trains the column finder with the specified spreadsheet.- Parameters:
data- the training data- Returns:
- true if successfully trained
-
isColumnFinderTrained
boolean isColumnFinderTrained()
Checks whether the column finder has been trained.- Returns:
- true if the column finder has been trained already
-
-