Package adams.data
Interface CompressionSupporter<T extends DataContainer>
-
- All Superinterfaces:
AdditionalInformationHandler
,CleanUpHandler
,Comparable
,DataContainerWriter<T>
,Destroyable
,FileFormatHandler
,OptionHandler
,ShallowCopySupporter<DataContainerWriter>
public interface CompressionSupporter<T extends DataContainer> extends DataContainerWriter<T>
Interface forDataContainerWriter
classes that support compression.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getUseCompression()
Returns whether compression is in use.void
setUseCompression(boolean value)
Sets whether to use compression.String
useCompressionTipText()
Returns the tip text for this property.-
Methods inherited from interface adams.core.AdditionalInformationHandler
getAdditionalInformation
-
Methods inherited from interface adams.core.CleanUpHandler
cleanUp
-
Methods inherited from interface java.lang.Comparable
compareTo
-
Methods inherited from interface adams.data.io.output.DataContainerWriter
canWriteMultiple, getOutput, isOutputFile, outputTipText, setOutput, write, write
-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.core.io.FileFormatHandler
getDefaultFormatExtension, getFormatDescription, getFormatExtensions
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
Methods inherited from interface adams.core.ShallowCopySupporter
shallowCopy, shallowCopy
-
-
-
-
Method Detail
-
setUseCompression
void setUseCompression(boolean value)
Sets whether to use compression.- Parameters:
value
- true if to use compression
-
getUseCompression
boolean getUseCompression()
Returns whether compression is in use.- Returns:
- true if compression is used
-
useCompressionTipText
String useCompressionTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-