Uses of Class
adams.core.io.AbstractFilenameGenerator
-
Packages that use AbstractFilenameGenerator Package Description adams.core.io adams.data.io.output adams.flow.condition.bool adams.flow.control adams.flow.source adams.flow.transformer -
-
Uses of AbstractFilenameGenerator in adams.core.io
Subclasses of AbstractFilenameGenerator in adams.core.io Modifier and Type Class Description class
AbstractFilenameGeneratorWithDirectory
Ancestor for filename generators that use a directory.class
AbstractFilenameGeneratorWithExtension
Ancestor for filename generators that require a provided extension.class
DefaultFilenameGenerator
The default generator for database ID and ID handlers.class
FixedFilenameGenerator
Simple concatenates directory, provided name and extension.class
NullFilenameGenerator
Dummy filename generator, always outputs null.class
ReportFieldFilenameGenerator
Obtains the filename from a field in the attached report.class
SimpleFilenameGenerator
Simple generator that assembles filename based on output dir, prefix, current object (string representation), suffix and extension.class
SimpleFixedFilenameGenerator
Simply returns the supplied file name.class
SimpleObjectToStringFilenameGenerator
Simple generator that just turns the incoming object into a string using the 'toString()' method.class
TimestampFilenameGenerator
Generator that assembles a filename based on output dir, prefix, current timestamp (according to format string), suffix and extension. -
Uses of AbstractFilenameGenerator in adams.data.io.output
Fields in adams.data.io.output declared as AbstractFilenameGenerator Modifier and Type Field Description protected AbstractFilenameGenerator
AbstractTextWriterWithFilenameGenerator. m_FilenameGenerator
the filename generator to use.Methods in adams.data.io.output that return AbstractFilenameGenerator Modifier and Type Method Description AbstractFilenameGenerator
AbstractTextWriterWithFilenameGenerator. getFilenameGenerator()
Returns the filename generator.Methods in adams.data.io.output with parameters of type AbstractFilenameGenerator Modifier and Type Method Description void
AbstractTextWriterWithFilenameGenerator. setFilenameGenerator(AbstractFilenameGenerator value)
Sets the filename generator. -
Uses of AbstractFilenameGenerator in adams.flow.condition.bool
Fields in adams.flow.condition.bool declared as AbstractFilenameGenerator Modifier and Type Field Description protected AbstractFilenameGenerator
FileExists. m_Generator
the filename generator.protected AbstractFilenameGenerator
FileInUse. m_Generator
the filename generator.Methods in adams.flow.condition.bool that return AbstractFilenameGenerator Modifier and Type Method Description AbstractFilenameGenerator
FileExists. getGenerator()
Returns the generator to use (ignored ifNullFilenameGenerator
).AbstractFilenameGenerator
FileInUse. getGenerator()
Returns the generator to use (ignored ifNullFilenameGenerator
).Methods in adams.flow.condition.bool with parameters of type AbstractFilenameGenerator Modifier and Type Method Description void
FileExists. setGenerator(AbstractFilenameGenerator value)
Sets the generator to use (ignored ifNullFilenameGenerator
).void
FileInUse. setGenerator(AbstractFilenameGenerator value)
Sets the generator to use (ignored ifNullFilenameGenerator
). -
Uses of AbstractFilenameGenerator in adams.flow.control
Fields in adams.flow.control declared as AbstractFilenameGenerator Modifier and Type Field Description protected AbstractFilenameGenerator
CallableActorScreenshot. m_FilenameGenerator
the filename generator to use.Methods in adams.flow.control that return AbstractFilenameGenerator Modifier and Type Method Description AbstractFilenameGenerator
CallableActorScreenshot. getFilenameGenerator()
Returns the prefix for the filename in case of auto-generation.Methods in adams.flow.control with parameters of type AbstractFilenameGenerator Modifier and Type Method Description void
CallableActorScreenshot. setFilenameGenerator(AbstractFilenameGenerator value)
Sets the prefix for the filename in case of auto-generation. -
Uses of AbstractFilenameGenerator in adams.flow.source
Fields in adams.flow.source declared as AbstractFilenameGenerator Modifier and Type Field Description protected AbstractFilenameGenerator
FilenameGenerator. m_Generator
the generator to use.Methods in adams.flow.source that return AbstractFilenameGenerator Modifier and Type Method Description AbstractFilenameGenerator
FilenameGenerator. getGenerator()
Returns the generator to use.Methods in adams.flow.source with parameters of type AbstractFilenameGenerator Modifier and Type Method Description void
FilenameGenerator. setGenerator(AbstractFilenameGenerator value)
Sets the generator to use. -
Uses of AbstractFilenameGenerator in adams.flow.transformer
Fields in adams.flow.transformer declared as AbstractFilenameGenerator Modifier and Type Field Description protected AbstractFilenameGenerator
AbstractReportFileWriter. m_Generator
the filename generator to use.protected AbstractFilenameGenerator
FilenameGenerator. m_Generator
the generator to use.Methods in adams.flow.transformer that return AbstractFilenameGenerator Modifier and Type Method Description protected AbstractFilenameGenerator
AbstractReportFileWriter. getDefaultFilenameGenerator()
Returns the default generatorAbstractFilenameGenerator
AbstractReportFileWriter. getFilenameGenerator()
Returns the writer in use.AbstractFilenameGenerator
FilenameGenerator. getGenerator()
Returns the generator to use.Methods in adams.flow.transformer with parameters of type AbstractFilenameGenerator Modifier and Type Method Description void
AbstractReportFileWriter. setFilenameGenerator(AbstractFilenameGenerator value)
Sets the filename generator to use.void
FilenameGenerator. setGenerator(AbstractFilenameGenerator value)
Sets the generator to use.
-