Methods Summary |
---|
public int | describeContents()
return 0;
|
public boolean | equals(java.lang.Object obj)
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
DataConnectionRealTimeInfo other = (DataConnectionRealTimeInfo) obj;
return (mTime == other.mTime)
&& (mDcPowerState == other.mDcPowerState);
|
public int | getDcPowerState()
return mDcPowerState;
|
public long | getTime()
return mTime;
|
public int | hashCode()
final long prime = 17;
long result = 1;
result = (prime * result) + mTime;
result += (prime * result) + mDcPowerState;
return (int)result;
|
public java.lang.String | toString()
StringBuffer sb = new StringBuffer();
sb.append("mTime=").append(mTime);
sb.append(" mDcPowerState=").append(mDcPowerState);
return sb.toString();
|
public void | writeToParcel(android.os.Parcel out, int flags)
out.writeLong(mTime);
out.writeInt(mDcPowerState);
|