Methods Summary |
---|
public com.android.internal.telephony.gsm.SsData$RequestType | RequestTypeFromRILInt(int type)
try {
return RequestType.values()[type];
} catch (IndexOutOfBoundsException e) {
Rlog.e(GSMPhone.LOG_TAG, "Invalid Request type");
return null;
}
|
public com.android.internal.telephony.gsm.SsData$ServiceType | ServiceTypeFromRILInt(int type)
try {
return ServiceType.values()[type];
} catch (IndexOutOfBoundsException e) {
Rlog.e(GSMPhone.LOG_TAG, "Invalid Service type");
return null;
}
|
public com.android.internal.telephony.gsm.SsData$TeleserviceType | TeleserviceTypeFromRILInt(int type)
try {
return TeleserviceType.values()[type];
} catch (IndexOutOfBoundsException e) {
Rlog.e(GSMPhone.LOG_TAG, "Invalid Teleservice type");
return null;
}
|
public java.lang.String | toString()
return "[SsData] " + "ServiceType: " + serviceType
+ " RequestType: " + requestType
+ " TeleserviceType: " + teleserviceType
+ " ServiceClass: " + serviceClass
+ " Result: " + result
+ " Is Service Type CF: " + serviceType.isTypeCF();
|