Class DataPointValue


  • public class DataPointValue
    extends java.lang.Object
    Implements a data point value with functional profile and data points names.
    • Constructor Summary

      Constructors 
      Constructor Description
      DataPointValue​(java.lang.String functionalProfileName, java.lang.String dataPointName, Value value)
      Constructs a data point value.
    • Constructor Detail

      • DataPointValue

        public DataPointValue​(java.lang.String functionalProfileName,
                              java.lang.String dataPointName,
                              Value value)
        Constructs a data point value.
        Parameters:
        functionalProfileName - the functional profile name
        dataPointName - the data point name
        value - the data point value
    • Method Detail

      • getFunctionalProfileName

        public java.lang.String getFunctionalProfileName()
        Gets the functional profile name.
        Returns:
        the functional profile name
      • getDataPointName

        public java.lang.String getDataPointName()
        Gets the data point name.
        Returns:
        the data point name.
      • getValue

        public Value getValue()
        Gets the data point value.
        Returns:
        an instance of Value
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • of

        public static DataPointValue of​(java.lang.String functionalProfileName,
                                        java.lang.String dataPointName,
                                        Value value)
        Constructs a data point value.
        Parameters:
        functionalProfileName - the functional profile name
        dataPointName - the data point name
        value - the data point value
        Returns:
        the constructed data point value