UwbDevice

  • UwbDevice represents a UWB device.

  • You can create a UwbDevice using either a byte array or a String for the address.

  • You can retrieve the address of a UwbDevice using the getAddress() method.

  • The class includes standard methods like equals(), hashCode(), and toString().

public class UwbDevice extends Object

Represents a UWB device.

Public Method Summary

static UwbDevice
createForAddress(byte[] address)
Creates a new UwbDevice for a given address.
static UwbDevice
createForAddress(String address)
Creates a new UwbDevice for a given address.
boolean
UwbAddress
getAddress()
The device address (eg, MAC address).
int
String

Inherited Method Summary

Public Methods

public static UwbDevice createForAddress (byte[] address)

Creates a new UwbDevice for a given address.

public static UwbDevice createForAddress (String address)

Creates a new UwbDevice for a given address.

public boolean equals (Object o)

public UwbAddress getAddress ()

The device address (eg, MAC address).

public int hashCode ()

public String toString ()