Class MaxTraceFunction.Double

All Implemented Interfaces:
EventListener, DoubleSource, UpdatableSource
Enclosing class:
MaxTraceFunction

public static class MaxTraceFunction.Double extends MaxTraceFunction implements DoubleSource
An implementation of the Memoryless Series class, which manages double type data sources.
  • Field Details

    • max

      protected double max
    • target

      protected DoubleSource target
  • Constructor Details

    • Double

      public Double(@NonNull @NonNull DoubleSource source, @NonNull @NonNull Enum<?> valueID)
      Creates a basic statistic probe on a DoubleSource object.
      Parameters:
      source - The DoubleSource object.
      valueID - The value identifier defined by source object.
      Throws:
      NullPointerException - when any of the input parameters is null.
    • Double

      public Double(@NonNull @NonNull Object source, @NonNull @NonNull String valueName, boolean getFromMethod)
      Creates a basic statistic probe on a generic object.
      Parameters:
      source - A generic source object.
      valueName - The name of the field or the method returning the variable to be probed.
      getFromMethod - Specifies if valueName is a method or a property value.
      Throws:
      NullPointerException - when any of the input parameters is null.
  • Method Details

    • applyFunction

      public void applyFunction()
      Reads the source values and update statistics.
      Overrides:
      applyFunction in class MaxTraceFunction
    • getDoubleValue

      public double getDoubleValue(@NonNull @NonNull Enum<?> valueID)
      Returns the result of a given statistic.
      Specified by:
      getDoubleValue in interface DoubleSource
      Parameters:
      valueID - One of the MaxTraceFunction.Variables constants representing available statistics.
      Returns:
      The computed value.
      Throws:
      NullPointerException - when any of the input parameters is null.