Loading api/current.txt +8 −8 Original line number Original line Diff line number Diff line Loading @@ -40233,9 +40233,9 @@ package android.telephony { method public int getCid(); method public int getCid(); method public int getLac(); method public int getLac(); method public deprecated int getMcc(); method public deprecated int getMcc(); method public java.lang.String getMccStr(); method public java.lang.String getMccString(); method public deprecated int getMnc(); 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.String getMobileNetworkOperator(); method public java.lang.CharSequence getOperatorAlphaLong(); method public java.lang.CharSequence getOperatorAlphaLong(); method public java.lang.CharSequence getOperatorAlphaShort(); method public java.lang.CharSequence getOperatorAlphaShort(); Loading @@ -40249,9 +40249,9 @@ package android.telephony { method public int getCi(); method public int getCi(); method public int getEarfcn(); method public int getEarfcn(); method public deprecated int getMcc(); method public deprecated int getMcc(); method public java.lang.String getMccStr(); method public java.lang.String getMccString(); method public deprecated int getMnc(); 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.String getMobileNetworkOperator(); method public java.lang.CharSequence getOperatorAlphaLong(); method public java.lang.CharSequence getOperatorAlphaLong(); method public java.lang.CharSequence getOperatorAlphaShort(); method public java.lang.CharSequence getOperatorAlphaShort(); Loading @@ -40265,8 +40265,8 @@ package android.telephony { method public int getCid(); method public int getCid(); method public int getCpid(); method public int getCpid(); method public int getLac(); method public int getLac(); method public java.lang.String getMccStr(); method public java.lang.String getMccString(); method public java.lang.String getMncStr(); method public java.lang.String getMncString(); method public void writeToParcel(android.os.Parcel, int); method public void writeToParcel(android.os.Parcel, int); field public static final android.os.Parcelable.Creator<android.telephony.CellIdentityTdscdma> CREATOR; field public static final android.os.Parcelable.Creator<android.telephony.CellIdentityTdscdma> CREATOR; } } Loading @@ -40275,9 +40275,9 @@ package android.telephony { method public int getCid(); method public int getCid(); method public int getLac(); method public int getLac(); method public deprecated int getMcc(); method public deprecated int getMcc(); method public java.lang.String getMccStr(); method public java.lang.String getMccString(); method public deprecated int getMnc(); 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.String getMobileNetworkOperator(); method public java.lang.CharSequence getOperatorAlphaLong(); method public java.lang.CharSequence getOperatorAlphaLong(); method public java.lang.CharSequence getOperatorAlphaShort(); method public java.lang.CharSequence getOperatorAlphaShort(); telephony/java/android/telephony/CellIdentityGsm.java +4 −4 Original line number Original line Diff line number Diff line Loading @@ -120,7 +120,7 @@ public final class CellIdentityGsm extends CellIdentity { /** /** * @return 3-digit Mobile Country Code, 0..999, Integer.MAX_VALUE if unknown * @return 3-digit Mobile Country Code, 0..999, Integer.MAX_VALUE if unknown * @deprecated Use {@link #getMccStr} instead. * @deprecated Use {@link #getMccString} instead. */ */ @Deprecated @Deprecated public int getMcc() { public int getMcc() { Loading @@ -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 * @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 @Deprecated public int getMnc() { public int getMnc() { Loading Loading @@ -176,14 +176,14 @@ public final class CellIdentityGsm extends CellIdentity { /** /** * @return Mobile Country Code in string format, null if unknown * @return Mobile Country Code in string format, null if unknown */ */ public String getMccStr() { public String getMccString() { return mMccStr; return mMccStr; } } /** /** * @return Mobile Network Code in string format, null if unknown * @return Mobile Network Code in string format, null if unknown */ */ public String getMncStr() { public String getMncString() { return mMncStr; return mMncStr; } } Loading telephony/java/android/telephony/CellIdentityLte.java +4 −4 Original line number Original line Diff line number Diff line Loading @@ -125,7 +125,7 @@ public final class CellIdentityLte extends CellIdentity { /** /** * @return 3-digit Mobile Country Code, 0..999, Integer.MAX_VALUE if unknown * @return 3-digit Mobile Country Code, 0..999, Integer.MAX_VALUE if unknown * @deprecated Use {@link #getMccStr} instead. * @deprecated Use {@link #getMccString} instead. */ */ @Deprecated @Deprecated public int getMcc() { public int getMcc() { Loading @@ -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 * @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 @Deprecated public int getMnc() { public int getMnc() { Loading Loading @@ -179,14 +179,14 @@ public final class CellIdentityLte extends CellIdentity { /** /** * @return Mobile Country Code in string format, null if unknown * @return Mobile Country Code in string format, null if unknown */ */ public String getMccStr() { public String getMccString() { return mMccStr; return mMccStr; } } /** /** * @return Mobile Network Code in string format, null if unknown * @return Mobile Network Code in string format, null if unknown */ */ public String getMncStr() { public String getMncString() { return mMncStr; return mMncStr; } } Loading telephony/java/android/telephony/CellIdentityTdscdma.java +2 −2 Original line number Original line Diff line number Diff line Loading @@ -86,7 +86,7 @@ public final class CellIdentityTdscdma extends CellIdentity { * Get Mobile Country Code in string format * Get Mobile Country Code in string format * @return Mobile Country Code in string format, null if unknown * @return Mobile Country Code in string format, null if unknown */ */ public String getMccStr() { public String getMccString() { return mMccStr; return mMccStr; } } Loading @@ -94,7 +94,7 @@ public final class CellIdentityTdscdma extends CellIdentity { * Get Mobile Network Code in string format * Get Mobile Network Code in string format * @return Mobile Network Code in string format, null if unknown * @return Mobile Network Code in string format, null if unknown */ */ public String getMncStr() { public String getMncString() { return mMncStr; return mMncStr; } } Loading telephony/java/android/telephony/CellIdentityWcdma.java +4 −4 Original line number Original line Diff line number Diff line Loading @@ -118,7 +118,7 @@ public final class CellIdentityWcdma extends CellIdentity { /** /** * @return 3-digit Mobile Country Code, 0..999, Integer.MAX_VALUE if unknown * @return 3-digit Mobile Country Code, 0..999, Integer.MAX_VALUE if unknown * @deprecated Use {@link #getMccStr} instead. * @deprecated Use {@link #getMccString} instead. */ */ @Deprecated @Deprecated public int getMcc() { public int getMcc() { Loading @@ -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 * @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 @Deprecated public int getMnc() { public int getMnc() { Loading Loading @@ -160,14 +160,14 @@ public final class CellIdentityWcdma extends CellIdentity { /** /** * @return Mobile Country Code in string version, null if unknown * @return Mobile Country Code in string version, null if unknown */ */ public String getMccStr() { public String getMccString() { return mMccStr; return mMccStr; } } /** /** * @return Mobile Network Code in string version, null if unknown * @return Mobile Network Code in string version, null if unknown */ */ public String getMncStr() { public String getMncString() { return mMncStr; return mMncStr; } } Loading Loading
api/current.txt +8 −8 Original line number Original line Diff line number Diff line Loading @@ -40233,9 +40233,9 @@ package android.telephony { method public int getCid(); method public int getCid(); method public int getLac(); method public int getLac(); method public deprecated int getMcc(); method public deprecated int getMcc(); method public java.lang.String getMccStr(); method public java.lang.String getMccString(); method public deprecated int getMnc(); 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.String getMobileNetworkOperator(); method public java.lang.CharSequence getOperatorAlphaLong(); method public java.lang.CharSequence getOperatorAlphaLong(); method public java.lang.CharSequence getOperatorAlphaShort(); method public java.lang.CharSequence getOperatorAlphaShort(); Loading @@ -40249,9 +40249,9 @@ package android.telephony { method public int getCi(); method public int getCi(); method public int getEarfcn(); method public int getEarfcn(); method public deprecated int getMcc(); method public deprecated int getMcc(); method public java.lang.String getMccStr(); method public java.lang.String getMccString(); method public deprecated int getMnc(); 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.String getMobileNetworkOperator(); method public java.lang.CharSequence getOperatorAlphaLong(); method public java.lang.CharSequence getOperatorAlphaLong(); method public java.lang.CharSequence getOperatorAlphaShort(); method public java.lang.CharSequence getOperatorAlphaShort(); Loading @@ -40265,8 +40265,8 @@ package android.telephony { method public int getCid(); method public int getCid(); method public int getCpid(); method public int getCpid(); method public int getLac(); method public int getLac(); method public java.lang.String getMccStr(); method public java.lang.String getMccString(); method public java.lang.String getMncStr(); method public java.lang.String getMncString(); method public void writeToParcel(android.os.Parcel, int); method public void writeToParcel(android.os.Parcel, int); field public static final android.os.Parcelable.Creator<android.telephony.CellIdentityTdscdma> CREATOR; field public static final android.os.Parcelable.Creator<android.telephony.CellIdentityTdscdma> CREATOR; } } Loading @@ -40275,9 +40275,9 @@ package android.telephony { method public int getCid(); method public int getCid(); method public int getLac(); method public int getLac(); method public deprecated int getMcc(); method public deprecated int getMcc(); method public java.lang.String getMccStr(); method public java.lang.String getMccString(); method public deprecated int getMnc(); 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.String getMobileNetworkOperator(); method public java.lang.CharSequence getOperatorAlphaLong(); method public java.lang.CharSequence getOperatorAlphaLong(); method public java.lang.CharSequence getOperatorAlphaShort(); method public java.lang.CharSequence getOperatorAlphaShort();
telephony/java/android/telephony/CellIdentityGsm.java +4 −4 Original line number Original line Diff line number Diff line Loading @@ -120,7 +120,7 @@ public final class CellIdentityGsm extends CellIdentity { /** /** * @return 3-digit Mobile Country Code, 0..999, Integer.MAX_VALUE if unknown * @return 3-digit Mobile Country Code, 0..999, Integer.MAX_VALUE if unknown * @deprecated Use {@link #getMccStr} instead. * @deprecated Use {@link #getMccString} instead. */ */ @Deprecated @Deprecated public int getMcc() { public int getMcc() { Loading @@ -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 * @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 @Deprecated public int getMnc() { public int getMnc() { Loading Loading @@ -176,14 +176,14 @@ public final class CellIdentityGsm extends CellIdentity { /** /** * @return Mobile Country Code in string format, null if unknown * @return Mobile Country Code in string format, null if unknown */ */ public String getMccStr() { public String getMccString() { return mMccStr; return mMccStr; } } /** /** * @return Mobile Network Code in string format, null if unknown * @return Mobile Network Code in string format, null if unknown */ */ public String getMncStr() { public String getMncString() { return mMncStr; return mMncStr; } } Loading
telephony/java/android/telephony/CellIdentityLte.java +4 −4 Original line number Original line Diff line number Diff line Loading @@ -125,7 +125,7 @@ public final class CellIdentityLte extends CellIdentity { /** /** * @return 3-digit Mobile Country Code, 0..999, Integer.MAX_VALUE if unknown * @return 3-digit Mobile Country Code, 0..999, Integer.MAX_VALUE if unknown * @deprecated Use {@link #getMccStr} instead. * @deprecated Use {@link #getMccString} instead. */ */ @Deprecated @Deprecated public int getMcc() { public int getMcc() { Loading @@ -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 * @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 @Deprecated public int getMnc() { public int getMnc() { Loading Loading @@ -179,14 +179,14 @@ public final class CellIdentityLte extends CellIdentity { /** /** * @return Mobile Country Code in string format, null if unknown * @return Mobile Country Code in string format, null if unknown */ */ public String getMccStr() { public String getMccString() { return mMccStr; return mMccStr; } } /** /** * @return Mobile Network Code in string format, null if unknown * @return Mobile Network Code in string format, null if unknown */ */ public String getMncStr() { public String getMncString() { return mMncStr; return mMncStr; } } Loading
telephony/java/android/telephony/CellIdentityTdscdma.java +2 −2 Original line number Original line Diff line number Diff line Loading @@ -86,7 +86,7 @@ public final class CellIdentityTdscdma extends CellIdentity { * Get Mobile Country Code in string format * Get Mobile Country Code in string format * @return Mobile Country Code in string format, null if unknown * @return Mobile Country Code in string format, null if unknown */ */ public String getMccStr() { public String getMccString() { return mMccStr; return mMccStr; } } Loading @@ -94,7 +94,7 @@ public final class CellIdentityTdscdma extends CellIdentity { * Get Mobile Network Code in string format * Get Mobile Network Code in string format * @return Mobile Network Code in string format, null if unknown * @return Mobile Network Code in string format, null if unknown */ */ public String getMncStr() { public String getMncString() { return mMncStr; return mMncStr; } } Loading
telephony/java/android/telephony/CellIdentityWcdma.java +4 −4 Original line number Original line Diff line number Diff line Loading @@ -118,7 +118,7 @@ public final class CellIdentityWcdma extends CellIdentity { /** /** * @return 3-digit Mobile Country Code, 0..999, Integer.MAX_VALUE if unknown * @return 3-digit Mobile Country Code, 0..999, Integer.MAX_VALUE if unknown * @deprecated Use {@link #getMccStr} instead. * @deprecated Use {@link #getMccString} instead. */ */ @Deprecated @Deprecated public int getMcc() { public int getMcc() { Loading @@ -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 * @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 @Deprecated public int getMnc() { public int getMnc() { Loading Loading @@ -160,14 +160,14 @@ public final class CellIdentityWcdma extends CellIdentity { /** /** * @return Mobile Country Code in string version, null if unknown * @return Mobile Country Code in string version, null if unknown */ */ public String getMccStr() { public String getMccString() { return mMccStr; return mMccStr; } } /** /** * @return Mobile Network Code in string version, null if unknown * @return Mobile Network Code in string version, null if unknown */ */ public String getMncStr() { public String getMncString() { return mMncStr; return mMncStr; } } Loading