Package org.osgi.service.zigbee
Interface ZCLReadStatusRecord
-
public interface ZCLReadStatusRecord
This interface the reading result ofZCLCluster.readAttributes(ZCLAttributeInfo[])
.- Author:
- $Id: f393e76f3d6ed64798c09314d26fe6526e5c65a3 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ZCLAttributeInfo
getAttributeInfo()
Returns theZCLAttributeInfo
related to the reading operation.ZigBeeException
getFailure()
Returns the potential failure of the reading operation.java.lang.Object
getValue()
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
Object
representing the ZigBee value.
-
getFailure
ZigBeeException getFailure()
Returns the potential failure of the reading operation.- Returns:
- null in case of success, otherwise the
ZigBeeException
specifying the failing of the reading.
-
getAttributeInfo
ZCLAttributeInfo getAttributeInfo()
Returns theZCLAttributeInfo
related to the reading operation.- Returns:
- the
ZCLAttributeInfo
related to the reading operation.
-
-