Package org.osgi.service.zigbee
Interface ZCLReadStatusRecord
public interface ZCLReadStatusRecord
This interface the reading result of
ZCLCluster.readAttributes(ZCLAttributeInfo[]).-
Method Summary
Modifier and TypeMethodDescriptionReturns theZCLAttributeInforelated to the reading operation.Returns the potential failure of the reading operation.getValue()Returns the value of the related read attribute.
-
Method Details
-
getValue
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.
-