Class StringExpressionDir
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.data.djl.outputdirgenerator.AbstractOutputDirGenerator
-
- adams.data.djl.outputdirgenerator.StringExpressionDir
-
- All Implemented Interfaces:
adams.core.Destroyable
,adams.core.GlobalInfoSupporter
,adams.core.logging.LoggingLevelHandler
,adams.core.logging.LoggingSupporter
,adams.core.option.OptionHandler
,adams.core.QuickInfoSupporter
,adams.core.SizeOfHandler
,OutputDirGenerator
,adams.flow.core.FlowContextHandler
,Serializable
public class StringExpressionDir extends AbstractOutputDirGenerator
Expands any variables in the supplied string expression, evaluates it and returns the result as directory.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected adams.parser.StringExpressionText
m_OutputDir
the expression to use as dir.-
Fields inherited from class adams.data.djl.outputdirgenerator.AbstractOutputDirGenerator
m_FlowContext
-
-
Constructor Summary
Constructors Constructor Description StringExpressionDir()
Default constructor.StringExpressionDir(adams.parser.StringExpressionText exp)
Instantiates the generator and sets the expression to use.StringExpressionDir(String exp)
Instantiates the generator and sets the expression to use.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
defineOptions()
Adds options to the internal list of options.adams.core.io.PlaceholderDirectory
generate()
Generates the output directory.adams.parser.StringExpressionText
getOutputDir()
Gets the output dir.String
globalInfo()
Returns a string describing the object.String
outputDirTipText()
Returns the tip text for this property.protected boolean
requiresFlowContext()
Returns whether flow context is required.void
setOutputDir(adams.parser.StringExpressionText value)
Sets the output dir.-
Methods inherited from class adams.data.djl.outputdirgenerator.AbstractOutputDirGenerator
getFlowContext, getQuickInfo, setFlowContext
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, initialize, loggingLevelTipText, newOptionManager, reset, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
-
-
-
Constructor Detail
-
StringExpressionDir
public StringExpressionDir()
Default constructor.
-
StringExpressionDir
public StringExpressionDir(String exp)
Instantiates the generator and sets the expression to use.- Parameters:
exp
- the expression to use
-
StringExpressionDir
public StringExpressionDir(adams.parser.StringExpressionText exp)
Instantiates the generator and sets the expression to use.- Parameters:
exp
- the expression to use
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfo
in interfaceadams.core.GlobalInfoSupporter
- Specified by:
globalInfo
in classadams.core.option.AbstractOptionHandler
- Returns:
- a description suitable for displaying in the gui
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptions
in interfaceadams.core.option.OptionHandler
- Overrides:
defineOptions
in classadams.core.option.AbstractOptionHandler
-
setOutputDir
public void setOutputDir(adams.parser.StringExpressionText value)
Sets the output dir.- Parameters:
value
- the dir
-
getOutputDir
public adams.parser.StringExpressionText getOutputDir()
Gets the output dir.- Returns:
- the dir
-
outputDirTipText
public String outputDirTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the explorer/experimenter gui
-
requiresFlowContext
protected boolean requiresFlowContext()
Returns whether flow context is required.- Overrides:
requiresFlowContext
in classAbstractOutputDirGenerator
- Returns:
- true if required
-
generate
public adams.core.io.PlaceholderDirectory generate()
Generates the output directory.- Returns:
- the directory
-
-