public final class PowerRecord implements Record


Captures the power generated by the user, e.g. during cycling or rowing with a power meter. Each record represents a series of measurements.

Summary

Nested types

public final class PowerRecord.Sample

Represents a single measurement of power.

Public fields

static final @NonNull AggregateMetric<@NonNull Power>

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

static final @NonNull AggregateMetric<@NonNull Power>

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

static final @NonNull AggregateMetric<@NonNull Power>

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

Public constructors

PowerRecord(
    @NonNull Instant startTime,
    ZoneOffset startZoneOffset,
    @NonNull Instant endTime,
    ZoneOffset endZoneOffset,
    @NonNull List<@NonNull PowerRecord.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 PowerRecord.Sample>
@NonNull Instant

Start time of the record.

ZoneOffset

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

int

Public fields

POWER_AVG

public static final @NonNull AggregateMetric<@NonNull PowerPOWER_AVG

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

POWER_MAX

public static final @NonNull AggregateMetric<@NonNull PowerPOWER_MAX

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

POWER_MIN

public static final @NonNull AggregateMetric<@NonNull PowerPOWER_MIN

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

Public constructors

PowerRecord

Added in 1.1.0-alpha07
public PowerRecord(
    @NonNull Instant startTime,
    ZoneOffset startZoneOffset,
    @NonNull Instant endTime,
    ZoneOffset endZoneOffset,
    @NonNull List<@NonNull PowerRecord.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.

getSamples

Added in 1.1.0-alpha07
public @NonNull List<@NonNull PowerRecord.SamplegetSamples()

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