Merge "Add isEmergencyApn"

This commit is contained in:
Jordan Liu
2020-01-07 19:29:39 +00:00
committed by Gerrit Code Review

View File

@@ -1055,6 +1055,11 @@ public class ApnSetting implements Parcelable {
return (mApnTypeBitmask & type) == type;
}
/** @hide */
public boolean isEmergencyApn() {
return hasApnType(TYPE_EMERGENCY);
}
/** @hide */
public boolean canHandleType(@ApnType int type) {
if (!mCarrierEnabled) {