WheelchairPushesRecord

public final class WheelchairPushesRecord implements Record


Captures the number of wheelchair pushes done since the last reading. Each push is only reported once so records shouldn't have overlapping time. The start time of each record should represent the start of the interval in which pushes were made.

Summary

Public fields

static final @NonNull AggregateMetric<@NonNull Long>

Metric identifier to retrieve the total wheelchair push count from androidx.health.connect.client.aggregate.AggregationResult.

Public constructors

WheelchairPushesRecord(
    @NonNull Instant startTime,
    ZoneOffset startZoneOffset,
    @NonNull Instant endTime,
    ZoneOffset endZoneOffset,
    long count,
    @NonNull Metadata metadata
)

Public methods

boolean
equals(Object other)
final long

Count.

@NonNull Instant

End time of the record.

ZoneOffset

User experienced zone offset at endTime, or null if unknown.

@NonNull Metadata

Set of common metadata associated with the written record.

@NonNull Instant

Start time of the record.

ZoneOffset

User experienced zone offset at startTime, or null if unknown.

int

Public fields

COUNT_TOTAL

public static final @NonNull AggregateMetric<@NonNull LongCOUNT_TOTAL

Metric identifier to retrieve the total wheelchair push count from androidx.health.connect.client.aggregate.AggregationResult.

Public constructors

WheelchairPushesRecord

Added in 1.1.0-alpha07
public WheelchairPushesRecord(
    @NonNull Instant startTime,
    ZoneOffset startZoneOffset,
    @NonNull Instant endTime,
    ZoneOffset endZoneOffset,
    long count,
    @NonNull Metadata metadata
)

Public methods

equals

public boolean equals(Object other)

getCount

Added in 1.1.0-alpha07
public final long getCount()

Count. Required field. Valid range: 1-1000000.

getEndTime

Added in 1.1.0-alpha07
public @NonNull Instant getEndTime()

End time of the record.

getEndZoneOffset

Added in 1.1.0-alpha07
public ZoneOffset getEndZoneOffset()

User experienced zone offset at endTime, or null if unknown. Providing these will help history aggregations results stay consistent should user travel. Queries with user experienced time filters will assume system current zone offset if the information is absent.

getMetadata

Added in 1.1.0-alpha07
public @NonNull Metadata getMetadata()

Set of common metadata associated with the written record.

getStartTime

Added in 1.1.0-alpha07
public @NonNull Instant getStartTime()

Start time of the record.

getStartZoneOffset

Added in 1.1.0-alpha07
public ZoneOffset getStartZoneOffset()

User experienced zone offset at startTime, or null if unknown. Providing these will help history aggregations results stay consistent should user travel. Queries with user experienced time filters will assume system current zone offset if the information is absent.

hashCode

public int hashCode()