Package adams.data.io.input
Interface NoHeaderSpreadSheetReader
-
- All Superinterfaces:
Destroyable,ErrorProvider,FileFormatHandler,OptionHandler,Serializable,SpreadSheetReader,Stoppable,StoppableWithFeedback
- All Known Implementing Classes:
AbstractExcelSpreadSheetReader,CsvSpreadSheetReader,ExcelSpreadSheetReader,ExcelStreamingSpreadSheetReader,FastCsvSpreadSheetReader,FixedTabularSpreadSheetReader,GnumericSpreadSheetReader,ODFSpreadSheetReader,SimpleCsvSpreadSheetReader,SimpleStreamSpreadSheetReader,TsvSpreadSheetReader
public interface NoHeaderSpreadSheetReader extends SpreadSheetReader
Interface for spreadsheet readers that support sheets with no headers.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringcustomColumnHeadersTipText()Returns the tip text for this property.StringgetCustomColumnHeaders()Returns whether the file contains a header row or not.booleangetNoHeader()Returns whether the file contains a header row or not.StringnoHeaderTipText()Returns the tip text for this property.voidsetCustomColumnHeaders(String value)Sets the custom headers to use.voidsetNoHeader(boolean value)Sets whether the file contains a header row or not.-
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.data.io.input.SpreadSheetReader
dataRowTypeTipText, getCorrespondingWriter, getDataRowType, getDefaultFormatExtension, getFormatDescription, getFormatExtensions, getLastError, getSpreadSheetType, hasLastError, isStopped, read, read, read, read, setDataRowType, setSpreadSheetType, spreadSheetTypeTipText, stopExecution
-
-
-
-
Method Detail
-
setNoHeader
void setNoHeader(boolean value)
Sets whether the file contains a header row or not.- Parameters:
value- true if no header row available
-
getNoHeader
boolean getNoHeader()
Returns whether the file contains a header row or not.- Returns:
- true if no header row available
-
noHeaderTipText
String noHeaderTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the gui
-
setCustomColumnHeaders
void setCustomColumnHeaders(String value)
Sets the custom headers to use.- Parameters:
value- the comma-separated list
-
getCustomColumnHeaders
String getCustomColumnHeaders()
Returns whether the file contains a header row or not.- Returns:
- the comma-separated list
-
customColumnHeadersTipText
String customColumnHeadersTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the gui
-
-