Interface ZCLDataTypeDescription

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      short getId()
      Returns the data type identifier.
      java.lang.Class<?> getJavaDataType()
      Returns the corresponding Java type class.
      java.lang.String getName()
      Returns the associated data type name.
      boolean isAnalog()
      Checks if the data type is analog.
    • Method Detail

      • getId

        short getId()
        Returns the data type identifier.
        Returns:
        the data type identifier. The data types identifiers supported by this specification are defined in the ZigBeeDataTypes interface.
      • getName

        java.lang.String getName()
        Returns the associated data type name.
        Returns:
        the associated data type name string.
      • isAnalog

        boolean isAnalog()
        Checks if the data type is analog.
        Returns:
        true, if the data type is Analog, otherwise is Discrete.
      • getJavaDataType

        java.lang.Class<?> getJavaDataType()
        Returns the corresponding Java type class.
        Returns:
        the corresponding Java type class.