Package com.blukii.sdk.config
Class BlukiiDataItem<T>
java.lang.Object
com.blukii.sdk.config.BlukiiDataItem<T>
- Type Parameters:
T
- Type of Dataset
This class represents one configuration set of a blukii.
You can get a BlukiiDataItem
via a BlukiiData
object or via a read or write
method of Blukii
.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionGets the cloud value of this item.Gets the device value of this item.Gets the device value type class of this item.boolean
Checks if cloud is supported for this item.boolean
Checks if this item is modified
-
Method Details
-
getCloudValue
Gets the cloud value of this item.- Returns:
- the cloud value
-
getDeviceValue
Gets the device value of this item.- Returns:
- the device value
-
isModified
public boolean isModified()Checks if this item is modified- Returns:
true
if it is modified, otherwisefalse
-
isCloudSupported
public boolean isCloudSupported()Checks if cloud is supported for this item.- Returns:
true
if cloud is supported, otherwisefalse
-
getValueType
Gets the device value type class of this item.- Returns:
- the device value type class
-