blob: d57731692412f759787bb015a07cedc71b2bb58d [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.healthconnect.datatypes;
import android.annotation.NonNull;
import java.time.Instant;
import java.util.Objects;
/**
* Represents time interval.
*
* <p>Each object has start time and end time. End time must be after start time.
*
* @hide
*/
public final class TimeInterval {
private final Instant mStartTime;
private final Instant mEndTime;
public TimeInterval(@NonNull Instant startTime, @NonNull Instant endTime) {
Objects.requireNonNull(startTime);
Objects.requireNonNull(endTime);
if (!endTime.isAfter(startTime)) {
throw new IllegalArgumentException("End time must be after start time.");
}
mStartTime = startTime;
mEndTime = endTime;
}
/*
* Returns start time of the interval.
*/
@NonNull
public Instant getStartTime() {
return mStartTime;
}
/*
* Returns end time of the interval.
*/
@NonNull
public Instant getEndTime() {
return mEndTime;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof TimeInterval)) return false;
TimeInterval that = (TimeInterval) o;
return getStartTime().equals(that.getStartTime()) && getEndTime().equals(that.getEndTime());
}
@Override
public int hashCode() {
return Objects.hash(getStartTime(), getEndTime());
}
}