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 Stringm_Evaluationthe evaluation to check.protected adams.core.base.BaseIntervalm_Rangethe allowed range.static StringSUFFIX_PASSEDthe 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 Stringcheck(EvaluationContainer cont)Hook method for checks.voiddefineOptions()Adds options to the internal list of options.EvaluationContainerdoCheckPrediction(EvaluationContainer cont)Performs the actual checks on the prediction.StringevaluationTipText()Returns the tip text for this property.StringgetEvaluation()Returns the evaluation to check.StringgetQuickInfo()Returns a quick info about the object, which can be displayed in the GUI.adams.core.base.BaseIntervalgetRange()Returns the allowed range of the numeric value.StringglobalInfo()Returns a string describing the object.StringrangeTipText()Returns the tip text for this property.voidsetEvaluation(String value)Sets the evaluation to check.voidsetRange(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:
globalInfoin interfaceadams.core.GlobalInfoSupporter- Specified by:
globalInfoin 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:
defineOptionsin interfaceadams.core.option.OptionHandler- Overrides:
defineOptionsin 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:
getQuickInfoin interfaceadams.core.QuickInfoSupporter- Overrides:
getQuickInfoin classAbstractPredictionCheck- Returns:
- null if no info available, otherwise short string
-
check
protected String check(EvaluationContainer cont)
Hook method for checks.- Overrides:
checkin 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:
doCheckPredictionin classAbstractPredictionCheck- Parameters:
cont- the container to check- Returns:
- the updated container
-
-