EddystoneScanningMode
enum EddystoneScanningMode : Enum<EddystoneScanningMode>Entries
LOW_POWER | LOW_POWERPerform Bluetooth LE scan in low power mode. This is the default scan mode as it consumes the least power. |
BALANCED | BALANCEDPerform Bluetooth LE scan in balanced power mode. Scan results are returned at a rate that provides a good trade-off between scan frequency and power consumption. |
LOW_LATENCY | LOW_LATENCYScan using highest duty cycle. It’s recommended to only use this mode when the application is running in the foreground. |
Properties
code
val code: Intentries
val entries: EnumEntries<EddystoneScanningMode>Returns a representation of an immutable list of all enum entries, in the order they’re declared.
name
val name: Stringordinal
val ordinal: IntFunctions
valueOf
fun valueOf(value: String): EddystoneScanningModeReturns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
values
fun values(): Array<EddystoneScanningMode>Returns an array containing the constants of this enum type, in the order they’re declared.
Last updated on