Package adams.data.io.output
Interface NoHeaderSpreadSheetWriter
-
- All Superinterfaces:
Destroyable,OptionHandler,SpreadSheetWriter,Stoppable,StoppableWithFeedback
- All Known Implementing Classes:
AutoWidthTabularSpreadSheetWriter,CsvSpreadSheetWriter,FixedTabularSpreadSheetWriter,TsvSpreadSheetWriter
public interface NoHeaderSpreadSheetWriter extends SpreadSheetWriter
Interface for spreadsheet writers 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 booleangetNoHeader()Returns whether the file contains a header row or not.StringnoHeaderTipText()Returns the tip text for this property.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.output.SpreadSheetWriter
getCorrespondingReader, getFormatDescription, getFormatExtensions, reset, write, write, write, write
-
Methods inherited from interface adams.core.Stoppable
stopExecution
-
Methods inherited from interface adams.core.StoppableWithFeedback
isStopped
-
-
-
-
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
-
-