Interface ZigBeeDeviceDescription
-
public interface ZigBeeDeviceDescription
This interface represents a ZigBee device description.- Author:
- $Id: d9b14c3b72929cccfe87e787624d3efd402bc628 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ZCLClusterDescription[]
getClientClustersDescriptions()
Returns an array of client cluster descriptions.int
getId()
Returns the device identifier.java.lang.String
getName()
Returns the device name.int
getProfileId()
Returns the profile identifier.ZCLClusterDescription[]
getServerClustersDescriptions()
Returns an array of server cluster descriptions.java.lang.Integer
getVersion()
Returns the device version.
-
-
-
Method Detail
-
getId
int getId()
Returns the device identifier.- Returns:
- the device identifier.
-
getName
java.lang.String getName()
Returns the device name.- Returns:
- the device name.
-
getVersion
java.lang.Integer getVersion()
Returns the device version.- Returns:
- the device version.
-
getProfileId
int getProfileId()
Returns the profile identifier.- Returns:
- the profile identifier.
-
getServerClustersDescriptions
ZCLClusterDescription[] getServerClustersDescriptions()
Returns an array of server cluster descriptions.- Returns:
- an array of server cluster descriptions.
-
getClientClustersDescriptions
ZCLClusterDescription[] getClientClustersDescriptions()
Returns an array of client cluster descriptions.- Returns:
- an array of client cluster descriptions.
-
-