Class ParameterConfiguration

  • All Implemented Interfaces:
    java.io.Serializable

    class ParameterConfiguration
    extends java.lang.Object
    implements java.io.Serializable
    Simple container pairing a parameter name with a step in order to compute the associated Jacobian matrix by finite difference.
    Since:
    3.0
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private double hP
      Parameter step for finite difference computation.
      private java.lang.String parameterName
      Parameter name.
      private static long serialVersionUID
      Serializable UID.
    • Constructor Summary

      Constructors 
      Constructor Description
      ParameterConfiguration​(java.lang.String parameterName, double hP)
      Parameter name and step pair constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      double getHP()
      Get parameter step.
      java.lang.String getParameterName()
      Get parameter name.
      void setHP​(double hParam)
      Set parameter step.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • serialVersionUID

        private static final long serialVersionUID
        Serializable UID.
        See Also:
        Constant Field Values
      • parameterName

        private java.lang.String parameterName
        Parameter name.
      • hP

        private double hP
        Parameter step for finite difference computation.
    • Constructor Detail

      • ParameterConfiguration

        ParameterConfiguration​(java.lang.String parameterName,
                               double hP)
        Parameter name and step pair constructor.
        Parameters:
        parameterName - parameter name
        hP - parameter step
    • Method Detail

      • getParameterName

        public java.lang.String getParameterName()
        Get parameter name.
        Returns:
        parameterName parameter name
      • getHP

        public double getHP()
        Get parameter step.
        Returns:
        hP parameter step
      • setHP

        public void setHP​(double hParam)
        Set parameter step.
        Parameters:
        hParam - parameter step