Location
class Location : Parcelable
kotlin.Any | |
↳ | android.health.connect.datatypes.ExerciseRoute.Location |
Point in the time and space. Used in ExerciseRoute
.
Summary
Nested classes | |
---|---|
Builder class for |
Inherited constants | |
---|---|
Public methods | |
---|---|
Int | |
Boolean | |
Length? |
Returns altitude of this location time point. |
Length? |
Returns horizontal accuracy of this location time point. |
Double |
Returns latitude of this location |
Double |
Returns longitude of this location |
Instant |
getTime() Returns time when this location has been recorded |
Length? |
Returns vertical accuracy of this location time point. |
Int |
hashCode() |
Unit |
writeToParcel(dest: Parcel, flags: Int) Flatten this object in to a Parcel. |
Properties | |
---|---|
static Parcelable.Creator<ExerciseRoute.Location!> |
Public methods
describeContents
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
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. |
getAltitude
fun getAltitude(): Length?
Returns altitude of this location time point. Returns null if no altitude was specified.
getHorizontalAccuracy
fun getHorizontalAccuracy(): Length?
Returns horizontal accuracy of this location time point. Returns null if no horizontal accuracy was specified.
getLatitude
fun getLatitude(): Double
Returns latitude of this location
Return | |
---|---|
Double |
Value is between -90.0 and 90.0 inclusive |
getLongitude
fun getLongitude(): Double
Returns longitude of this location
Return | |
---|---|
Double |
Value is between -180.0 and 180.0 inclusive |
getTime
fun getTime(): Instant
Returns time when this location has been recorded
Return | |
---|---|
Instant |
This value cannot be null . |
getVerticalAccuracy
fun getVerticalAccuracy(): Length?
Returns vertical accuracy of this location time point. Returns null if no vertical accuracy was specified.
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 android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE , and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES |