Package com.blukii.sdk.config
Enum Class BlukiiAction
- All Implemented Interfaces:
Serializable
,Comparable<BlukiiAction>
,Constable
Enum
BlukiiAction
represents the family of actions which can be done on blukiis.
Note: Whether the action is possible depends on the blukii module and firmware version.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionNot implemented yet: future previewNot implemented yet: future preview -
Method Summary
Modifier and TypeMethodDescriptionboolean
isNotify()
Returnstrue
if action is a action that supports notifications.boolean
Returnstrue
if action is a write action.static BlukiiAction
Returns the enum constant of this class with the specified name.static BlukiiAction[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
ReadRssi
- See Also:
-
ReadSecureConnect
-
WriteSecureConnect
-
ReadDelayedDisconnect
-
WriteDelayedDisconnect
-
ReadCurrentConnectionParameter
-
WriteCurrentConnectionParameter
-
ReadConnectionParameterDelay
-
WriteConnectionParameterDelay
-
ReadDelayedConnectionParameter
-
WriteDelayedConnectionParameter
-
ReadAdvertisingChannels
-
WriteAdvertisingChannels
-
ReadInitialAdvertisingInterval
-
WriteInitialAdvertisingInterval
-
ReadDelayedAdvertisingInterval
-
WriteDelayedAdvertisingInterval
-
ReadAdvertisingUpdateDelay
-
WriteAdvertisingUpdateDelay
-
ReadLimitedAdvertising
-
WriteLimitedAdvertising
-
ReadTxPower
- See Also:
-
WriteTxPower
-
SystemReset
-
ReadStateCounter
-
ResetStateCounter
-
ReadRTC
- See Also:
-
SyncRTC
- See Also:
-
WriteLEDMode
-
ReadBatteryType
- See Also:
-
WriteBatteryType
-
ReadBatteryLevel
-
ReadEnergySaveSettings
-
WriteEnergySaveSettings
-
WriteSecureKey
-
InitiatePairing
- See Also:
-
ReadTemperature
- See Also:
-
WriteTemperature
-
SmartBeaconReadSensorMeasureState
-
SmartBeaconWriteSensorMeasureState
-
SmartBeaconReadSensorMode
-
SmartBeaconWriteSensorMode
-
SmartBeaconReadSensorInterval
-
SmartBeaconWriteSensorInterval
-
SmartBeaconReadSensorTransfer
-
SmartBeaconWriteSensorTransfer
-
SmartBeaconReadSensorAccelerometerRange
-
SmartBeaconWriteSensorAccelerometerRange
-
SmartBeaconReadSensorInterrupt
-
SmartBeaconWriteSensorInterrupt
-
SmartBeaconReadSensorLimitedRecording
-
SmartBeaconWriteSensorLimitedRecording
-
SmartBeaconReadSpecialType
Not implemented yet: future preview -
SmartBeaconWriteSpecialType
Not implemented yet: future preview -
SmartBeaconReadDeviceTracingScanPeriod
-
SmartBeaconWriteDeviceTracingScanPeriod
-
SmartBeaconReadDeviceTracingScanDuration
-
SmartBeaconWriteDeviceTracingScanDuration
-
SmartBeaconReadDeviceTracingScanInterval
-
SmartBeaconWriteDeviceTracingScanInterval
-
SmartBeaconReadDeviceTracingScanWindow
-
SmartBeaconWriteDeviceTracingScanWindow
-
SmartBeaconReadDeviceTracingRssiThreshold
-
SmartBeaconWriteDeviceTracingRssiThreshold
-
SmartBeaconReadSettings
-
SmartBeaconWriteSettings
-
SmartBeaconReadFrames
- See Also:
-
SmartBeaconWriteFrames
-
SmartBeaconReadSecureMode
-
SmartBeaconWriteSecureMode
-
SmartBeaconSyncSecureMode
-
SmartBeaconReadEddystoneTxPowerPhysicalLevels
-
SmartBeaconReadEddystoneTxPowerMeasuredLevels
-
SmartBeaconWriteEddystoneTxPowerMeasuredLevels
-
SmartBeaconReadEddystoneTxPowerMode
-
SmartBeaconWriteEddystoneTxPowerMode
-
SmartBeaconReadEddystoneUID
-
SmartBeaconWriteEddystoneUID
-
SmartBeaconReadEddystoneUrl
-
SmartBeaconWriteEddystoneUrl
-
SmartBeaconReadEddystoneLockState
-
SmartBeaconWriteEddystoneLock
-
SmartBeaconWriteEddystoneUnlock
-
SmartBeaconResetEddystone
-
SmartBeaconReadIBeaconAdvertisement
-
SmartBeaconWriteIBeaconAdvertisement
-
SmartBeaconReadEventBeaconSettings
-
SmartBeaconWriteEventBeaconSettings
-
SmartBeaconReadRepeaterSettings
-
SmartBeaconWriteRepeaterSettings
-
SmartKeyResetMode
- See Also:
-
SmartKeyWriteModeConvenience
-
SmartKeyReadMode
- See Also:
-
SmartKeyWriteModePairing
-
SmartKeyWriteModeSecure
-
SmartKeyInitiateAuthentication
-
SmartKeyReadButton
- See Also:
-
SmartKeyWriteButton
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
isWriteAction
public boolean isWriteAction()Returnstrue
if action is a write action.A write action is for example "
WriteInitialAdvertisingInterval
"- Returns:
true
if action is a write action
-
isNotify
public boolean isNotify()Returnstrue
if action is a action that supports notifications.- Returns:
true
if action is a notification action- See Also:
-