Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d210655d authored by Cassie Han's avatar Cassie Han Committed by android-build-merger
Browse files

Merge "Expand use of 'Str' suffix in CellIdentity to 'String'" am: d622eacb

am: 3bcb6da7

Change-Id: If07c5a8d84933e8a353a77b39a1aa76f4a51a5bf
parents f5312f35 3bcb6da7
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -40233,9 +40233,9 @@ package android.telephony {
    method public int getCid();
    method public int getLac();
    method public deprecated int getMcc();
    method public java.lang.String getMccStr();
    method public java.lang.String getMccString();
    method public deprecated int getMnc();
    method public java.lang.String getMncStr();
    method public java.lang.String getMncString();
    method public java.lang.String getMobileNetworkOperator();
    method public java.lang.CharSequence getOperatorAlphaLong();
    method public java.lang.CharSequence getOperatorAlphaShort();
@@ -40249,9 +40249,9 @@ package android.telephony {
    method public int getCi();
    method public int getEarfcn();
    method public deprecated int getMcc();
    method public java.lang.String getMccStr();
    method public java.lang.String getMccString();
    method public deprecated int getMnc();
    method public java.lang.String getMncStr();
    method public java.lang.String getMncString();
    method public java.lang.String getMobileNetworkOperator();
    method public java.lang.CharSequence getOperatorAlphaLong();
    method public java.lang.CharSequence getOperatorAlphaShort();
@@ -40265,8 +40265,8 @@ package android.telephony {
    method public int getCid();
    method public int getCpid();
    method public int getLac();
    method public java.lang.String getMccStr();
    method public java.lang.String getMncStr();
    method public java.lang.String getMccString();
    method public java.lang.String getMncString();
    method public void writeToParcel(android.os.Parcel, int);
    field public static final android.os.Parcelable.Creator<android.telephony.CellIdentityTdscdma> CREATOR;
  }
@@ -40275,9 +40275,9 @@ package android.telephony {
    method public int getCid();
    method public int getLac();
    method public deprecated int getMcc();
    method public java.lang.String getMccStr();
    method public java.lang.String getMccString();
    method public deprecated int getMnc();
    method public java.lang.String getMncStr();
    method public java.lang.String getMncString();
    method public java.lang.String getMobileNetworkOperator();
    method public java.lang.CharSequence getOperatorAlphaLong();
    method public java.lang.CharSequence getOperatorAlphaShort();
+4 −4
Original line number Diff line number Diff line
@@ -120,7 +120,7 @@ public final class CellIdentityGsm extends CellIdentity {

    /**
     * @return 3-digit Mobile Country Code, 0..999, Integer.MAX_VALUE if unknown
     * @deprecated Use {@link #getMccStr} instead.
     * @deprecated Use {@link #getMccString} instead.
     */
    @Deprecated
    public int getMcc() {
@@ -129,7 +129,7 @@ public final class CellIdentityGsm extends CellIdentity {

    /**
     * @return 2 or 3-digit Mobile Network Code, 0..999, Integer.MAX_VALUE if unknown
     * @deprecated Use {@link #getMncStr} instead.
     * @deprecated Use {@link #getMncString} instead.
     */
    @Deprecated
    public int getMnc() {
@@ -176,14 +176,14 @@ public final class CellIdentityGsm extends CellIdentity {
    /**
     * @return Mobile Country Code in string format, null if unknown
     */
    public String getMccStr() {
    public String getMccString() {
        return mMccStr;
    }

    /**
     * @return Mobile Network Code in string format, null if unknown
     */
    public String getMncStr() {
    public String getMncString() {
        return mMncStr;
    }

+4 −4
Original line number Diff line number Diff line
@@ -125,7 +125,7 @@ public final class CellIdentityLte extends CellIdentity {

    /**
     * @return 3-digit Mobile Country Code, 0..999, Integer.MAX_VALUE if unknown
     * @deprecated Use {@link #getMccStr} instead.
     * @deprecated Use {@link #getMccString} instead.
     */
    @Deprecated
    public int getMcc() {
@@ -134,7 +134,7 @@ public final class CellIdentityLte extends CellIdentity {

    /**
     * @return 2 or 3-digit Mobile Network Code, 0..999, Integer.MAX_VALUE if unknown
     * @deprecated Use {@link #getMncStr} instead.
     * @deprecated Use {@link #getMncString} instead.
     */
    @Deprecated
    public int getMnc() {
@@ -179,14 +179,14 @@ public final class CellIdentityLte extends CellIdentity {
    /**
     * @return Mobile Country Code in string format, null if unknown
     */
    public String getMccStr() {
    public String getMccString() {
        return mMccStr;
    }

    /**
     * @return Mobile Network Code in string format, null if unknown
     */
    public String getMncStr() {
    public String getMncString() {
        return mMncStr;
    }

+2 −2
Original line number Diff line number Diff line
@@ -86,7 +86,7 @@ public final class CellIdentityTdscdma extends CellIdentity {
     * Get Mobile Country Code in string format
     * @return Mobile Country Code in string format, null if unknown
     */
    public String getMccStr() {
    public String getMccString() {
        return mMccStr;
    }

@@ -94,7 +94,7 @@ public final class CellIdentityTdscdma extends CellIdentity {
     * Get Mobile Network Code in string format
     * @return Mobile Network Code in string format, null if unknown
     */
    public String getMncStr() {
    public String getMncString() {
        return mMncStr;
    }

+4 −4
Original line number Diff line number Diff line
@@ -118,7 +118,7 @@ public final class CellIdentityWcdma extends CellIdentity {

    /**
     * @return 3-digit Mobile Country Code, 0..999, Integer.MAX_VALUE if unknown
     * @deprecated Use {@link #getMccStr} instead.
     * @deprecated Use {@link #getMccString} instead.
     */
    @Deprecated
    public int getMcc() {
@@ -127,7 +127,7 @@ public final class CellIdentityWcdma extends CellIdentity {

    /**
     * @return 2 or 3-digit Mobile Network Code, 0..999, Integer.MAX_VALUE if unknown
     * @deprecated Use {@link #getMncStr} instead.
     * @deprecated Use {@link #getMncString} instead.
     */
    @Deprecated
    public int getMnc() {
@@ -160,14 +160,14 @@ public final class CellIdentityWcdma extends CellIdentity {
    /**
     * @return Mobile Country Code in string version, null if unknown
     */
    public String getMccStr() {
    public String getMccString() {
        return mMccStr;
    }

    /**
     * @return Mobile Network Code in string version, null if unknown
     */
    public String getMncStr() {
    public String getMncString() {
        return mMncStr;
    }