StepsCadenceRecord

public final class StepsCadenceRecord implements Record


Captures the user's steps cadence. Each record represents a series of measurements.

Summary

Nested types

public final class StepsCadenceRecord.Sample

Represents a single measurement of the steps cadence.

Public fields

static final @NonNull AggregateMetric<@NonNull Double>

Metric identifier to retrieve average steps cadence from androidx.health.connect.client.aggregate.AggregationResult.

static final @NonNull AggregateMetric<@NonNull Double>

Metric identifier to retrieve maximum steps cadence from androidx.health.connect.client.aggregate.AggregationResult.

static final @NonNull AggregateMetric<@NonNull Double>

Metric identifier to retrieve minimum steps cadence from androidx.health.connect.client.aggregate.AggregationResult.

Public constructors

StepsCadenceRecord(
    @NonNull Instant startTime,
    ZoneOffset startZoneOffset,
    @NonNull Instant endTime,
    ZoneOffset endZoneOffset,
    @NonNull List<@NonNull StepsCadenceRecord.Sample> samples,
    @NonNull Metadata metadata
)

Public methods

boolean
equals(Object other)
@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 List<@NonNull StepsCadenceRecord.Sample>
@NonNull Instant

Start time of the record.

ZoneOffset

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

int

Public fields

RATE_AVG

public static final @NonNull AggregateMetric<@NonNull DoubleRATE_AVG

Metric identifier to retrieve average steps cadence from androidx.health.connect.client.aggregate.AggregationResult.

RATE_MAX

public static final @NonNull AggregateMetric<@NonNull DoubleRATE_MAX

Metric identifier to retrieve maximum steps cadence from androidx.health.connect.client.aggregate.AggregationResult.

RATE_MIN

public static final @NonNull AggregateMetric<@NonNull DoubleRATE_MIN

Metric identifier to retrieve minimum steps cadence from androidx.health.connect.client.aggregate.AggregationResult.

Public constructors

StepsCadenceRecord

Added in 1.1.0-alpha07
public StepsCadenceRecord(
    @NonNull Instant startTime,
    ZoneOffset startZoneOffset,
    @NonNull Instant endTime,
    ZoneOffset endZoneOffset,
    @NonNull List<@NonNull StepsCadenceRecord.Sample> samples,
    @NonNull Metadata metadata
)

Public methods

equals

public boolean equals(Object other)

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()