UwbAddress

  • UwbAddress represents a UWB (Ultra-Wideband) address, similar to a MAC address for UWB devices.

  • It can be created from either a HEX string or a byte array.

  • Provides methods to get the address as a byte array and for standard object comparisons (equals, hashCode, toString).

  • Inherited methods from Object are also available for use.

public class UwbAddress extends Object

Represents a UWB address.

Public Constructor Summary

UwbAddress(String address)
Creates a UwbAddress from a HEX string.
UwbAddress(byte[] address)
Creates a UwbAddress from a byte array.

Public Method Summary

boolean
byte[]
getAddress()
Gets the device address (eg, MAC address).
int
String

Inherited Method Summary

Public Constructors

public UwbAddress (String address)

Creates a UwbAddress from a HEX string.

public UwbAddress (byte[] address)

Creates a UwbAddress from a byte array.

Public Methods

public boolean equals (Object o)

public byte[] getAddress ()

Gets the device address (eg, MAC address).

public int hashCode ()

public String toString ()