Package adams.data.groupextraction
Interface SpreadSheetRowGroupExtractorWithColumn
-
- All Superinterfaces:
Destroyable
,GroupExtractor
,OptionHandler
,QuickInfoSupporter
,SpreadSheetRowGroupExtractor
- All Known Implementing Classes:
SpreadSheetCell
,SpreadSheetCellRegExp
,SpreadSheetCellWithLookUp
public interface SpreadSheetRowGroupExtractorWithColumn extends SpreadSheetRowGroupExtractor
Extractors that work on spreadsheet rows.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
columnTipText()
Returns the tip text for this property.SpreadSheetColumnIndex
getColumn()
Returns the column to get the group from.void
setColumn(SpreadSheetColumnIndex value)
Sets the column to get the group from.-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.data.groupextraction.GroupExtractor
extractGroup, handles
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
Methods inherited from interface adams.core.QuickInfoSupporter
getQuickInfo
-
-
-
-
Method Detail
-
setColumn
void setColumn(SpreadSheetColumnIndex value)
Sets the column to get the group from.- Parameters:
value
- the column
-
getColumn
SpreadSheetColumnIndex getColumn()
Returns the column to get the group from.- Returns:
- the column
-
columnTipText
String columnTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-