Class Range
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.flow.transformer.predictioncheck.AbstractPredictionCheck
-
- adams.flow.transformer.predictioncheck.Range
-
- 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
,Serializable
public class Range extends AbstractPredictionCheck
Ensures that the specified (numeric) evaluator results are within a specified range.
Adds a new boolean evaluation to the container, with the same name as the checked one, but appended with the suffix '.passed'.
E.g., when checking the evaluation 'sqr', 'sqr..passed' will get added, either with 'true' or 'false' as value.
-logging-level <OFF|SEVERE|WARNING|INFO|CONFIG|FINE|FINER|FINEST> (property: loggingLevel) The logging level for outputting errors and debugging output. default: WARNING
-evaluation <java.lang.String> (property: evaluation) The name of the evaluation value to check. default:
-range <adams.core.base.BaseInterval> (property: range) The allowed range of the numeric value of the evaluation. default: (-Infinity;+Infinity)
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
m_Evaluation
the evaluation to check.protected adams.core.base.BaseInterval
m_Range
the allowed range.static String
SUFFIX_PASSED
the suffix for the passed flag.
-
Constructor Summary
Constructors Constructor Description Range()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected String
check(EvaluationContainer cont)
Hook method for checks.void
defineOptions()
Adds options to the internal list of options.EvaluationContainer
doCheckPrediction(EvaluationContainer cont)
Performs the actual checks on the prediction.String
evaluationTipText()
Returns the tip text for this property.String
getEvaluation()
Returns the evaluation to check.String
getQuickInfo()
Returns a quick info about the object, which can be displayed in the GUI.adams.core.base.BaseInterval
getRange()
Returns the allowed range of the numeric value.String
globalInfo()
Returns a string describing the object.String
rangeTipText()
Returns the tip text for this property.void
setEvaluation(String value)
Sets the evaluation to check.void
setRange(adams.core.base.BaseInterval value)
Sets the allowed range of the numeric value.-
Methods inherited from class adams.flow.transformer.predictioncheck.AbstractPredictionCheck
checkPrediction
-
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
-
-
-
-
Field Detail
-
SUFFIX_PASSED
public static final String SUFFIX_PASSED
the suffix for the passed flag.- See Also:
- Constant Field Values
-
m_Evaluation
protected String m_Evaluation
the evaluation to check.
-
m_Range
protected adams.core.base.BaseInterval m_Range
the allowed range.
-
-
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
-
setEvaluation
public void setEvaluation(String value)
Sets the evaluation to check.- Parameters:
value
- the evaluation
-
getEvaluation
public String getEvaluation()
Returns the evaluation to check.- Returns:
- the evaluation
-
evaluationTipText
public String evaluationTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setRange
public void setRange(adams.core.base.BaseInterval value)
Sets the allowed range of the numeric value.- Parameters:
value
- the range
-
getRange
public adams.core.base.BaseInterval getRange()
Returns the allowed range of the numeric value.- Returns:
- the range
-
rangeTipText
public String rangeTipText()
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:
getQuickInfo
in interfaceadams.core.QuickInfoSupporter
- Overrides:
getQuickInfo
in classAbstractPredictionCheck
- Returns:
- null if no info available, otherwise short string
-
check
protected String check(EvaluationContainer cont)
Hook method for checks.- Overrides:
check
in classAbstractPredictionCheck
- Parameters:
cont
- the container to check- Returns:
- null if successful, otherwise error message
-
doCheckPrediction
public EvaluationContainer doCheckPrediction(EvaluationContainer cont)
Performs the actual checks on the prediction.- Specified by:
doCheckPrediction
in classAbstractPredictionCheck
- Parameters:
cont
- the container to check- Returns:
- the updated container
-
-