Class TimeseriesValueSubset

  • All Implemented Interfaces:
    CleanUpHandler, Destroyable, GlobalInfoSupporter, LoggingLevelHandler, LoggingSupporter, OptionHandler, ShallowCopySupporter<Filter>, SizeOfHandler, Filter<Timeseries>, Serializable, Comparable

    public class TimeseriesValueSubset
    extends AbstractFilter<Timeseries>
    Generates a new timeseries with the first block of values that fits between the specified min/max (both included).

    -logging-level <OFF|SEVERE|WARNING|INFO|CONFIG|FINE|FINER|FINEST> (property: loggingLevel)
        The logging level for outputting errors and debugging output.
        default: WARNING
     
    -no-id-update <boolean> (property: dontUpdateID)
        If enabled, suppresses updating the ID of adams.data.id.IDHandler data containers.
        default: false
     
    -minimum <double> (property: minimum)
        The minimum (included) that the values must satisfy.
        default: 4.9E-324
     
    -maximum <double> (property: maximum)
        The maximum (included) that the values must satisfy.
        default: 1.7976931348623157E308
     
    Version:
    $Revision: 7881 $
    Author:
    fracpete (fracpete at waikato dot ac dot nz)
    See Also:
    Serialized Form
    • Field Detail

      • m_Minimum

        protected double m_Minimum
        the minimum.
      • m_Maximum

        protected double m_Maximum
        the maximum.
    • Constructor Detail

      • TimeseriesValueSubset

        public TimeseriesValueSubset()
    • Method Detail

      • setMinimum

        public void setMinimum​(double value)
        Sets the minimum (included) that the values need to satisfy.
        Parameters:
        value - the minimum
      • getMinimum

        public double getMinimum()
        Returns the minimum (included) that the values need to satisfy.
        Returns:
        the minimum
      • minimumTipText

        public String minimumTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the GUI or for listing the options.
      • setMaximum

        public void setMaximum​(double value)
        Sets the maximum (included) that the values need to satisfy.
        Parameters:
        value - the maximum
      • getMaximum

        public double getMaximum()
        Returns the maximum (included) that the values need to satisfy.
        Returns:
        the maximum
      • maximumTipText

        public String maximumTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the GUI or for listing the options.