Uses of Class
adams.data.outlier.AbstractOutlierDetector
-
Packages that use AbstractOutlierDetector Package Description adams.data.filter adams.data.outlier adams.flow.transformer -
-
Uses of AbstractOutlierDetector in adams.data.filter
Fields in adams.data.filter declared as AbstractOutlierDetector Modifier and Type Field Description protected AbstractOutlierDetector
OutlierDetector. m_OutlierDetector
the detector algorithm.Methods in adams.data.filter that return AbstractOutlierDetector Modifier and Type Method Description AbstractOutlierDetector
OutlierDetector. getDetector()
Returns the current outlier detector.Methods in adams.data.filter with parameters of type AbstractOutlierDetector Modifier and Type Method Description void
OutlierDetector. setDetector(AbstractOutlierDetector value)
Sets the outlier detector. -
Uses of AbstractOutlierDetector in adams.data.outlier
Subclasses of AbstractOutlierDetector in adams.data.outlier Modifier and Type Class Description class
AbstractDatabaseConnectionOutlierDetector<T extends DataContainer>
Ancestor for outlier detectors that require a database connection.class
AbstractScript
Ancestor for outlier detector scripts.class
AbstractScriptedOutlierDetector
Abstract ancestor for outlier detectors that execute external scripts.class
Excluded
Checks whether the 'Excluded' flag has been set in the report.class
FieldRequired
Checks whether the specified field is present in the report.class
FilteredOutlierDetector<T extends DataContainer>
A meta detector that first filters the data through a filter before pushing it through the base detector.class
Groovy
An outlier detector that uses a Groovy script for processing the data.class
MinMax
Detects data containers where a report value is too high/low.class
MultiOutlierDetector<T extends DataContainer>
A meta-detector that runs multiple outlier detectors over the data.class
PassThrough
A dummy detector that detects nothing.class
Scripted
An outlier detector that uses any scripting handler for processing the data with a script located in the specified file.class
StringMatcher
Checks whether the specified string field is available in the report and the value matches the specified regular expression.class
TargetRequired
Checks whether the specified target field is available in the report.class
TimeseriesMinPoints
Ensures that a minimum number of points in the timeseries have the specified minimum value.class
TimeseriesRange
Ensures that timeseries values lie within the defined range.class
TimeseriesTimestampCheck
Checks whether the timestamp with the specified index meets the condition (eg before or after the supplied timestamp).Fields in adams.data.outlier declared as AbstractOutlierDetector Modifier and Type Field Description protected AbstractOutlierDetector
AbstractOutlierDetector.DetectorJob. m_Detector
the detector to use.protected AbstractOutlierDetector
FilteredOutlierDetector. m_Detector
the detector to use.protected AbstractOutlierDetector[]
MultiOutlierDetector. m_Detectors
the detectors.protected AbstractOutlierDetector
Groovy. m_OutlierDetectorObject
the loaded script object.protected AbstractOutlierDetector
Scripted. m_OutlierDetectorObject
the loaded script object.Methods in adams.data.outlier that return AbstractOutlierDetector Modifier and Type Method Description static AbstractOutlierDetector
AbstractOutlierDetector. forCommandLine(String cmdline)
Instantiates the detector from the given commandline (i.e., classname and optional options).static AbstractOutlierDetector
AbstractOutlierDetector. forName(String classname, String[] options)
Instantiates the detector with the given options.AbstractOutlierDetector
FilteredOutlierDetector. getDetector()
Returns the detector in use.AbstractOutlierDetector
AbstractOutlierDetector.DetectorJob. getOutlierDetector()
Returns the detector being used.AbstractOutlierDetector[]
MultiOutlierDetector. getSubDetectors()
Returns the detectors in use.AbstractOutlierDetector
AbstractOutlierDetector. shallowCopy()
Returns a shallow copy of itself, i.e., based on the commandline options.AbstractOutlierDetector
AbstractOutlierDetector. shallowCopy(boolean expand)
Returns a shallow copy of itself, i.e., based on the commandline options.Methods in adams.data.outlier with parameters of type AbstractOutlierDetector Modifier and Type Method Description void
FilteredOutlierDetector. setDetector(AbstractOutlierDetector value)
Sets the detector to use.void
MultiOutlierDetector. setSubDetectors(AbstractOutlierDetector[] value)
Sets the detectors to use.Constructors in adams.data.outlier with parameters of type AbstractOutlierDetector Constructor Description DetectorJob(AbstractOutlierDetector detector, T data)
Initializes the job. -
Uses of AbstractOutlierDetector in adams.flow.transformer
Fields in adams.flow.transformer declared as AbstractOutlierDetector Modifier and Type Field Description protected AbstractOutlierDetector
OutlierDetector. m_Detector
the outlier detector to use.Methods in adams.flow.transformer that return AbstractOutlierDetector Modifier and Type Method Description AbstractOutlierDetector
OutlierDetector. getDetector()
Returns the outlier detector in use.Methods in adams.flow.transformer with parameters of type AbstractOutlierDetector Modifier and Type Method Description void
OutlierDetector. setDetector(AbstractOutlierDetector value)
Sets the outlier detector to use.
-