blob: 36090c195b27faea1ec02a95d10edeb9023671e5 [file] [log] [blame]
/*
* Copyright (C) 2023 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.health.connect.internal.datatypes;
import android.annotation.NonNull;
import android.health.connect.datatypes.BodyTemperatureMeasurementLocation;
import android.health.connect.datatypes.BodyTemperatureRecord;
import android.health.connect.datatypes.Identifier;
import android.health.connect.datatypes.RecordTypeIdentifier;
import android.health.connect.datatypes.units.Temperature;
import android.os.Parcel;
/**
* @see BodyTemperatureRecord
* @hide
*/
@Identifier(recordIdentifier = RecordTypeIdentifier.RECORD_TYPE_BODY_TEMPERATURE)
public final class BodyTemperatureRecordInternal
extends InstantRecordInternal<BodyTemperatureRecord> {
private int mMeasurementLocation;
private double mTemperature;
@BodyTemperatureMeasurementLocation.BodyTemperatureMeasurementLocations
public int getMeasurementLocation() {
return mMeasurementLocation;
}
/** returns this object with the specified measurementLocation */
@NonNull
public BodyTemperatureRecordInternal setMeasurementLocation(int measurementLocation) {
this.mMeasurementLocation = measurementLocation;
return this;
}
public double getTemperature() {
return mTemperature;
}
/** returns this object with the specified temperature */
@NonNull
public BodyTemperatureRecordInternal setTemperature(double temperature) {
this.mTemperature = temperature;
return this;
}
@NonNull
@Override
public BodyTemperatureRecord toExternalRecord() {
return new BodyTemperatureRecord.Builder(
buildMetaData(),
getTime(),
getMeasurementLocation(),
Temperature.fromCelsius(getTemperature()))
.setZoneOffset(getZoneOffset())
.buildWithoutValidation();
}
@Override
void populateInstantRecordFrom(@NonNull Parcel parcel) {
mMeasurementLocation = parcel.readInt();
mTemperature = parcel.readDouble();
}
@Override
void populateInstantRecordTo(@NonNull Parcel parcel) {
parcel.writeInt(mMeasurementLocation);
parcel.writeDouble(mTemperature);
}
}