blob: a979c54bfa02f0ddd406c37d7272dbbae91c21e8 [file] [log] [blame]
/*
* Copyright (C) 2006 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 com.android.internal.telephony.cat;
import android.annotation.UnsupportedAppUsage;
import android.os.Parcel;
import android.os.Parcelable;
/**
* Class for representing "Duration" object for CAT.
*
* {@hide}
*/
public class Duration implements Parcelable {
@UnsupportedAppUsage
public int timeInterval;
@UnsupportedAppUsage
public TimeUnit timeUnit;
public enum TimeUnit {
MINUTE(0x00),
SECOND(0x01),
TENTH_SECOND(0x02);
private int mValue;
TimeUnit(int value) {
mValue = value;
}
@UnsupportedAppUsage
public int value() {
return mValue;
}
}
/**
* @param timeInterval Between 1 and 255 inclusive.
*/
public Duration(int timeInterval, TimeUnit timeUnit) {
this.timeInterval = timeInterval;
this.timeUnit = timeUnit;
}
private Duration(Parcel in) {
timeInterval = in.readInt();
timeUnit = TimeUnit.values()[in.readInt()];
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeInt(timeInterval);
dest.writeInt(timeUnit.ordinal());
}
@Override
public int describeContents() {
return 0;
}
public static final Parcelable.Creator<Duration> CREATOR = new Parcelable.Creator<Duration>() {
@Override
public Duration createFromParcel(Parcel in) {
return new Duration(in);
}
@Override
public Duration[] newArray(int size) {
return new Duration[size];
}
};
}