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:

Summary

Inherited constants
Public methods
Int

Boolean
equals(other: Any?)

ScanResult?

Return bluetooth LE device info.

BluetoothDevice?

Return bluetooth device info.

ScanResult?

Return Wi-Fi device info.

Int

String

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.

hashCode

Added in API level 34
fun hashCode(): Int
Return
Int a hash code value for this object.

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

Properties

CREATOR

Added in API level 34
static val CREATOR: Parcelable.Creator<AssociatedDevice!>