public final class TimerStat
extends Object
implements Parcelable
java.lang.Object | |
↳ | android.os.health.TimerStat |
TimerStat对象存储计数和时间。
Inherited constants |
---|
From interface android.os.Parcelable
|
Fields |
|
---|---|
public static final Creator<TimerStat> |
CREATOR 由aidl Binder接口使用的CREATOR实例。 |
Public constructors |
|
---|---|
TimerStat() 构造一个空的TimerStat对象,其计数和时间设置为0。 |
|
TimerStat(int count, long time) 使用提供的计数和时间字段构造一个TimerStat对象。 |
|
TimerStat(Parcel in) |
Public methods |
|
---|---|
int |
describeContents() 描述此Parcelable实例的封送表示中包含的特殊对象的种类。 |
int |
getCount() 获取这个计时器的计数。 |
long |
getTime() 以毫秒为单位获取此计时器的时间。 |
void |
setCount(int count) 设置此计时器的计数。 |
void |
setTime(long time) 以毫秒为单位设置此计时器的时间。 |
void |
writeToParcel(Parcel out, int flags) 将此TimerStat对象写入宗地。 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
|
From interface android.os.Parcelable
|
TimerStat (int count, long time)
使用提供的计数和时间字段构造一个TimerStat对象。
Parameters | |
---|---|
count |
int : The count |
time |
long : The time |
TimerStat (Parcel in)
构造一个读取来自 Parcel
对象的值的 Parcel
对象。
Parameters | |
---|---|
in |
Parcel
|
int describeContents ()
描述此Parcelable实例的封送表示中包含的特殊对象的种类。 例如,如果对象将在writeToParcel(Parcel, int)
的输出中包含writeToParcel(Parcel, int)
,则此方法的返回值必须包含CONTENTS_FILE_DESCRIPTOR
位。
Returns | |
---|---|
int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. |
void writeToParcel (Parcel out, int flags)
将此TimerStat对象写入宗地。
Parameters | |
---|---|
out |
Parcel : The Parcel in which the object should be written. |
flags |
int : Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE . |