Interface ZigBeeEvent


  • public interface ZigBeeEvent
    This interface represents events generated by a ZigBee Device node.
    Author:
    $Id: 8e8eb5867bb1b3eb462f221539d37d25c1a23d41 $
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getAttributeId()
      Returns the attribute identifier (that is, the attribute's ID).
      int getClusterId()
      Returns the cluster id associated to this ZigBeeEvent.
      short getEndpointId()
      Returns the endpoint identifier.
      java.math.BigInteger getIEEEAddress()
      Returns the ZigBee device node IEEE Address.
      java.lang.Object getValue()
      Returns an object containing the new value of the related ZigBee attribute.
    • Method Detail

      • getIEEEAddress

        java.math.BigInteger getIEEEAddress()
        Returns the ZigBee device node IEEE Address.
        Returns:
        the ZigBee device node IEEE Address.
      • getEndpointId

        short getEndpointId()
        Returns the endpoint identifier.
        Returns:
        the endpoint identifier.
      • getClusterId

        int getClusterId()
        Returns the cluster id associated to this ZigBeeEvent.
        Returns:
        the cluster id.
      • getAttributeId

        int getAttributeId()
        Returns the attribute identifier (that is, the attribute's ID).
        Returns:
        the attribute identifier (that is, the attribute's ID).
      • getValue

        java.lang.Object getValue()
        Returns an object containing the new value of the related ZigBee attribute.
        Returns:
        an object containing the new value for the ZigBee attribute that has changed.