RelativeLocation


class RelativeLocation : Parcelable
kotlin.Any
   ↳ android.ranging.DlTdoaMeasurement.RelativeLocation

Represents a location in a relative coordinate system.

Summary

Inherited constants
Public methods
Int

Boolean
equals(other: Any?)

Int

Returns the X coordinate in millimeters.

Int

Returns the Y coordinate in millimeters.

Int

Returns the Z coordinate in millimeters.

Int

String

Unit
writeToParcel(dest: Parcel, flags: Int)

Flatten this object in to a Parcel.

Properties
static Parcelable.Creator<DlTdoaMeasurement.RelativeLocation!>

Public methods

describeContents

fun describeContents(): Int

equals

fun equals(other: Any?): Boolean

getX

fun getX(): Int

Returns the X coordinate in millimeters.

Return
Int Value is between -134217727 and 134217727 inclusive

getY

fun getY(): Int

Returns the Y coordinate in millimeters.

Return
Int Value is between -134217727 and 134217727 inclusive

getZ

fun getZ(): Int

Returns the Z coordinate in millimeters.

Return
Int Value is between -8388607 and 8388607 inclusive

hashCode

fun hashCode(): Int

toString

fun toString(): String

writeToParcel

fun writeToParcel(
    dest: Parcel,
    flags: Int
): Unit

Flatten this object in to a Parcel.

Parameters
dest Parcel: 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 the following:

Properties