Interface ZigBeeComplexDescriptor
public interface ZigBeeComplexDescriptor
This interface represents a Complex Descriptor as described in the ZigBee
Specification.
The Complex Descriptor contains extended information for each of the device descriptions contained in the node. The use of the Complex Descriptor is optional.
- "Consumers of this API must not implement this interface"
-
Method Summary
Modifier and TypeMethodDescriptionReturns the encoding used by characters in the character set.Returns the Device URL.byte[]
getIcon()
Returns the icon field.Returns the icon URL.Returns the language code used for character strings.Returns the manufacturer name.Returns the model name.Returns the serial number.
-
Method Details
-
getLanguageCode
String getLanguageCode()Returns the language code used for character strings.- Returns:
- the language code used for character strings.
-
getCharacterSetIdentifier
String getCharacterSetIdentifier()Returns the encoding used by characters in the character set.- Returns:
- the encoding used by characters in the character set.
-
getManufacturerName
String getManufacturerName()Returns the manufacturer name.- Returns:
- the manufacturer name.
-
getModelName
String getModelName()Returns the model name.- Returns:
- the model name.
-
getSerialNumber
String getSerialNumber()Returns the serial number.- Returns:
- the serial number.
-
getDeviceURL
String getDeviceURL()Returns the Device URL.- Returns:
- the Device URL.
-
getIcon
byte[] getIcon()Returns the icon field.- Returns:
- the icon field.
-
getIconURL
String getIconURL()Returns the icon URL.- Returns:
- the icon URL.
-