| AbstractAutocorrelation<T extends DataContainer> | 
 Abstract ancestor for autocorrelation filters. 
 | 
| AbstractBatchFilter<T extends DataContainer> | 
 Ancestor for batch filters. 
 | 
| AbstractDatabaseConnectionFilter<T extends DataContainer> | 
 Ancestor for filters that require database access. 
 | 
| AbstractDerivative<T extends DataContainer> | 
 Abstract ancestor for Derivative filters. 
 | 
| AbstractDerivative.Point | 
 Container class for abundance and timestamp in double format. 
 | 
| AbstractEquiDistance<T extends DataContainer> | 
 Abstract ancestor for filters that equi-distance the data. 
 | 
| AbstractEquiDistanceWithOffset<T extends DataContainer> | 
 Abstract ancestor for filters that equi-distance the data. 
 | 
| AbstractFastWavelet<T extends DataContainer> | 
Abstract ancestor for Wavelet filters based on the  JSci library.  
 | 
| AbstractFFT<T extends DataContainer> | 
Abstract ancestor for Fast Fourier Transform filters based on the  JSci library.  
 | 
| AbstractFilter<T extends DataContainer> | 
 Abstract base class for filters. 
 | 
| AbstractFilter.FilterJob<T extends DataContainer> | 
 A job class specific to Filters. 
 | 
| AbstractGlobalDataContainerFilter<T extends DataContainer> | 
 Ancestor for global filters that are used to filter data containers coming
 from the database or from files. 
 | 
| AbstractHistogram<T extends DataContainer> | 
 Ancestor for filters that generate a histogram from the incoming data. 
 | 
| AbstractLOWESS<T extends DataContainer> | 
 Abstract ancestor for LOWESS filters. 
 | 
| AbstractPreFilter<T extends DataContainer> | 
 Abstract ancestor for filters that use pre-filtered data as the basis
 for manipulating the original data. 
 | 
| AbstractSavitzkyGolay<T extends DataContainer> | 
 Abstract ancestor for Savitzky-Golay filters. 
 | 
| AbstractSAX<T extends DataContainer> | 
 Ancestor for SAX filters. 
 | 
| AbstractScript | 
 Ancestor for filter scripts. 
 | 
| AbstractScriptedFilter | 
 Abstract ancestor for filters that execute external scripts. 
 | 
| AbstractSimpleSavitzkyGolay<T extends DataContainer> | 
 Abstract ancestor for simple Savitzky-Golay filters. 
 | 
| BaselineCorrection<T extends DataContainer> | 
 A filter that runs a baseline correction scheme over the data. 
 | 
| DownSample<T extends DataContainer> | 
 A filter that returns only every n-th data point. 
 | 
| DownSize<T extends DataContainer> | 
 A filter that picks a specified number of evenly spaced data points from the data. 
 | 
| Groovy | 
 A filter that uses a Groovy script for processing the data. 
 | 
| MultiFilter<T extends DataContainer> | 
 A meta-filter that runs multiple filters over the data. 
 | 
| OutlierDetector<T extends DataContainer> | 
 A filter that runs an outlier detector over the data and attaches the generated detections as notes to the chromatogram. 
 | 
| PassThrough<T extends DataContainer> | 
 A dummy filter that just passes the data through. 
 | 
| RemoveNoise<T extends DataContainer & Mergeable> | 
 A filter that removes noise from the data with a user-supplied noise level algorithm. 
 | 
| ReportFilter<T extends DataContainer> | 
 A filter that modifies the reports of data containers being passed through. 
 | 
| Scripted | 
 A filter that uses any scripting handler for processing the data with a script located in the specified file. 
 | 
| Smoothing<T extends DataContainer> | 
 A filter that runs a smoothing scheme over the data. 
 | 
| TimeseriesAutocorrelation | 
 Performs autocorrelation on the timeseries. 
 | 
| TimeseriesChangeResolution | 
 Generates a new timeseries with a (user-defined) fixed-length interval between data points. 
 | 
| TimeseriesDerivative | 
 A filter for generating derivatives of timeseries data. 
 | 
| TimeseriesEquiDistance | 
 A filter for interpolating the values of a time series. 
 | 
| TimeseriesFastWavelet | 
 A filter that transforms the data with a wavelet. 
  
 For more information see: 
  
  (2009). 
 | 
| TimeseriesFFT | 
 A filter that transforms the data with Fast Fourier Transform. 
  
 For more information see: 
  
 Mark Hale (2009). 
 | 
| TimeseriesHistogram | 
 Generates a histogram from the timeseries. 
 | 
| TimeseriesLOWESS | 
 A filter that applies LOWESS smoothing. 
  
 For more information see: 
  
 WikiPedia. 
 | 
| TimeseriesResetTimestamps | 
 Resets the timestamps, makes them start at the specified date/time. 
 | 
| TimeseriesRound | 
 Rounds the values of the timeseries points. 
 | 
| TimeseriesRowNorm | 
 Row wise normalization. 
 | 
| TimeseriesSavitzkyGolay | 
 A filter that applies Savitzky-Golay smoothing. 
  
 For more information see: 
  
 A. 
 | 
| TimeseriesSAX | 
 Performs Symbolic Aggregate approXimation (SAX). 
 The data must be normalized using adams.data.filter.RowNorm beforehand. 
 For more information see: 
  
 Chiu, B., Keogh, E., Lonardi, S. (2003). 
 | 
| TimeseriesSetStart | 
 Sets the starting point of the timeseries to a new fixed timestamp and all other data points accordingly. 
 | 
| TimeseriesShiftTimestamps | 
 Shifts the timestamps of the timeseries by a calculated amount. 
 The amount is either the difference between the 'new' timestamp and a timestamp from the report or a supplied timestamp. 
 Accepted date formats (unless custom format specified): 
 yyyy-MM-dd HH:mm:ss 
 yyyy-MM-dd HH:mm:ss.S 
 yyyy-MM-dd
 
  
 
  
 | 
| TimeseriesShiftValues | 
 Shifts the values of the timeseries by the specified amount (up or down, depending on the sign). 
 | 
| TimeseriesValueSubset | 
 Generates a new timeseries with the first block of values that fits between the specified min/max (both included). 
 | 
| TimeseriesWindow | 
 Leaves only the specified window in the timeseries (borders included). 
 The matching can be inverted, i.e., everything but the window is returned. 
 |