Package org.osgi.service.zigbee
Interface ZCLReadStatusRecord
-
public interface ZCLReadStatusRecordThis interface the reading result ofZCLCluster.readAttributes(ZCLAttributeInfo[]).- Author:
- $Id: f393e76f3d6ed64798c09314d26fe6526e5c65a3 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ZCLAttributeInfogetAttributeInfo()Returns theZCLAttributeInforelated to the reading operation.ZigBeeExceptiongetFailure()Returns the potential failure of the reading operation.java.lang.ObjectgetValue()Returns the value of the related read attribute.
-
-
-
Method Detail
-
getValue
java.lang.Object getValue()
Returns the value of the related read attribute.- Returns:
- null in case of failure or invalid data, otherwise the Java
Objectrepresenting the ZigBee value.
-
getFailure
ZigBeeException getFailure()
Returns the potential failure of the reading operation.- Returns:
- null in case of success, otherwise the
ZigBeeExceptionspecifying the failing of the reading.
-
getAttributeInfo
ZCLAttributeInfo getAttributeInfo()
Returns theZCLAttributeInforelated to the reading operation.- Returns:
- the
ZCLAttributeInforelated to the reading operation.
-
-