Added in API level 34
AssociatedDevice
class AssociatedDevice : Parcelable
kotlin.Any | |
↳ | android.companion.AssociatedDevice |
Container for device info from an association that is not self-managed. Device can be one of three types:
- for classic Bluetooth -
android.bluetooth.BluetoothDevice
- for Bluetooth LE -
android.bluetooth.le.ScanResult
- for WiFi -
android.net.wifi.ScanResult
Summary
Inherited constants | |
---|---|
Public methods | |
---|---|
Int | |
Boolean | |
ScanResult? |
Return bluetooth LE device info. |
BluetoothDevice? |
Return bluetooth device info. |
ScanResult? |
Return Wi-Fi device info. |
Int |
hashCode() |
String |
toString() |
Unit |
writeToParcel(dest: Parcel, flags: Int) |
Properties | |
---|---|
static Parcelable.Creator<AssociatedDevice!> |
Public methods
describeContents
Added in API level 34
fun describeContents(): Int
Return | |
---|---|
Int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR |
equals
Added in API level 34
fun equals(other: Any?): Boolean
Parameters | |
---|---|
obj |
the reference object with which to compare. |
Return | |
---|---|
Boolean |
true if this object is the same as the obj argument; false otherwise. |
getBleDevice
Added in API level 34
fun getBleDevice(): ScanResult?
Return bluetooth LE device info. Null if associated device is not a BLE device.
Return | |
---|---|
ScanResult? |
BLE scan result containing details of detected BLE device. |
getBluetoothDevice
Added in API level 34
fun getBluetoothDevice(): BluetoothDevice?
Return bluetooth device info. Null if associated device is not a bluetooth device.
Return | |
---|---|
BluetoothDevice? |
Remote bluetooth device details containing MAC address. |
getWifiDevice
Added in API level 34
fun getWifiDevice(): ScanResult?
Return Wi-Fi device info. Null if associated device is not a Wi-Fi device.
Return | |
---|---|
ScanResult? |
Wi-Fi scan result containing details of detected access point. |
toString
Added in API level 34
fun toString(): String
Return | |
---|---|
String |
a string representation of the object. |
writeToParcel
Added in API level 34
fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
Parameters | |
---|---|
dest |
Parcel: The Parcel in which the object should be written. This value cannot be null . |
flags |
Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE . Value is either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE , and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES |