Package adams.data.spreadsheet.rowfinder
Interface TrainableRowFinder
-
- All Superinterfaces:
QuickInfoSupporter
,RowFinder
- All Known Implementing Classes:
AbstractFilteredRowFinder
,AbstractTrainableRowFinder
,Invert
,MultiRowFinder
public interface TrainableRowFinder extends RowFinder
Interface forRowFinder
algorithms 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 boolean
isRowFinderTrained()
Checks whether the row finder has been trained.boolean
trainRowFinder(SpreadSheet data)
Trains the row finder with the specified spreadsheet.-
Methods inherited from interface adams.core.QuickInfoSupporter
getQuickInfo
-
-
-
-
Method Detail
-
trainRowFinder
boolean trainRowFinder(SpreadSheet data)
Trains the row finder with the specified spreadsheet.- Parameters:
data
- the training data- Returns:
- true if successfully trained
-
isRowFinderTrained
boolean isRowFinderTrained()
Checks whether the row finder has been trained.- Returns:
- true if the row finder has been trained already
-
-