Package adams.data.timeseries
Class AbstractMetaTimeseriesFeatureGenerator
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.data.timeseries.AbstractTimeseriesFeatureGenerator<Timeseries>
-
- adams.data.timeseries.AbstractMetaTimeseriesFeatureGenerator
-
- All Implemented Interfaces:
CleanUpHandler,Destroyable,GlobalInfoSupporter,LoggingLevelHandler,LoggingSupporter,OptionHandler,QuickInfoSupporter,ShallowCopySupporter<AbstractTimeseriesFeatureGenerator>,SizeOfHandler,Serializable,Comparable
- Direct Known Subclasses:
AddMetaData,FixedNumFeatures
public abstract class AbstractMetaTimeseriesFeatureGenerator extends AbstractTimeseriesFeatureGenerator<Timeseries>
Ancestor for generators that use a base generator.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected AbstractTimeseriesFeatureGeneratorm_Generatorthe base generator.-
Fields inherited from class adams.data.timeseries.AbstractTimeseriesFeatureGenerator
m_Converter, m_Fields, m_Notes
-
Fields inherited from class adams.core.option.AbstractOptionHandler
m_OptionManager
-
Fields inherited from class adams.core.logging.LoggingObject
m_Logger, m_LoggingIsEnabled, m_LoggingLevel
-
-
Constructor Summary
Constructors Constructor Description AbstractMetaTimeseriesFeatureGenerator()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voiddefineOptions()Adds options to the internal list of options.StringgeneratorTipText()Returns the tip text for this property.protected abstract AbstractTimeseriesFeatureGeneratorgetDefaultGenerator()Returns the default generator to use.AbstractTimeseriesFeatureGeneratorgetGenerator()Returns the base feature generator in use.StringgetQuickInfo()Returns a quick info about the object, which can be displayed in the GUI.voidsetGenerator(AbstractTimeseriesFeatureGenerator value)Sets the base feature generator to use.-
Methods inherited from class adams.data.timeseries.AbstractTimeseriesFeatureGenerator
checkData, cleanUp, compareTo, converterTipText, createHeader, destroy, equals, fieldsTipText, generate, generateRows, getConverter, getDatasetFormat, getFields, getNotes, getRowFormat, notesTipText, postProcessHeader, postProcessRow, postProcessRows, reset, setConverter, setFields, setNotes, shallowCopy, shallowCopy
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, finishInit, getDefaultLoggingLevel, getOptionManager, globalInfo, initialize, loggingLevelTipText, newOptionManager, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface adams.core.logging.LoggingLevelHandler
getLoggingLevel
-
-
-
-
Field Detail
-
m_Generator
protected AbstractTimeseriesFeatureGenerator m_Generator
the base generator.
-
-
Method Detail
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptionsin interfaceOptionHandler- Overrides:
defineOptionsin classAbstractTimeseriesFeatureGenerator<Timeseries>
-
getDefaultGenerator
protected abstract AbstractTimeseriesFeatureGenerator getDefaultGenerator()
Returns the default generator to use.- Returns:
- the generator
-
setGenerator
public void setGenerator(AbstractTimeseriesFeatureGenerator value)
Sets the base feature generator to use.- Parameters:
value- the generator
-
getGenerator
public AbstractTimeseriesFeatureGenerator getGenerator()
Returns the base feature generator in use.- Returns:
- the generator
-
generatorTipText
public String generatorTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
getQuickInfo
public String getQuickInfo()
Returns a quick info about the object, which can be displayed in the GUI.- Specified by:
getQuickInfoin interfaceQuickInfoSupporter- Overrides:
getQuickInfoin classAbstractTimeseriesFeatureGenerator<Timeseries>- Returns:
- null if no info available, otherwise short string
-
-