Merge "Add missing UARFCN Getter to CellIdentityTdscdma" am: 627900696f

am: ba147d2c80

Change-Id: I6e856b87b8b3b698fd4da0f4c779e39bd7bd6fbb
This commit is contained in:
Nathan Harold
2019-02-13 10:47:40 -08:00
committed by android-build-merger
2 changed files with 9 additions and 0 deletions

View File

@@ -42348,6 +42348,7 @@ package android.telephony {
method public String getMccString();
method public String getMncString();
method @Nullable public String getMobileNetworkOperator();
method public int getUarfcn();
method public void writeToParcel(android.os.Parcel, int);
field public static final android.os.Parcelable.Creator<android.telephony.CellIdentityTdscdma> CREATOR;
}

View File

@@ -141,6 +141,14 @@ public final class CellIdentityTdscdma extends CellIdentity {
return mCpid;
}
/**
* @return 16-bit UMTS Absolute RF Channel Number,
* {@link android.telephony.CellInfo#UNAVAILABLE UNAVAILABLE} if unavailable.
*/
public int getUarfcn() {
return mUarfcn;
}
/** @hide */
@Override
public int getChannelNumber() {