Skip to Content
API ReferenceLocationEddystoneScanningMode

EddystoneScanningMode

enum EddystoneScanningMode : Enum<EddystoneScanningMode>

Entries

LOW_POWERLOW_POWER
Perform Bluetooth LE scan in low power mode. This is the default scan mode as it consumes the least power.
BALANCEDBALANCED
Perform 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_LATENCYLOW_LATENCY
Scan using highest duty cycle. It’s recommended to only use this mode when the application is running in the foreground.

Properties

code

val code: Int

entries

val entries: EnumEntries<EddystoneScanningMode>

Returns a representation of an immutable list of all enum entries, in the order they’re declared.

name

val name: String

ordinal

val ordinal: Int

Functions

valueOf

fun valueOf(value: String): EddystoneScanningMode

Returns 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