Interface ZigBeeEvent


public interface ZigBeeEvent
This interface represents events generated by a ZigBee Device node.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the attribute identifier (that is, the attribute's ID).
    int
    Returns the cluster id associated to this ZigBeeEvent.
    short
    Returns the endpoint identifier.
    Returns the ZigBee device node IEEE Address.
    Returns an object containing the new value of the related ZigBee attribute.
  • Method Details

    • getIEEEAddress

      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

      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.