FileDocCategorySizeDatePackage
SsData.javaAPI DocAndroid 5.1 API4814Thu Mar 12 22:22:54 GMT 2015com.android.internal.telephony.gsm

SsData

public class SsData extends Object
See also RIL_StkCcUnsolSsResponse in include/telephony/ril.h {@hide}

Fields Summary
public ServiceType
serviceType
public RequestType
requestType
public TeleserviceType
teleserviceType
public int
serviceClass
public int
result
public int[]
ssInfo
public com.android.internal.telephony.CallForwardInfo[]
cfInfo
Constructors Summary
Methods Summary
public com.android.internal.telephony.gsm.SsData$RequestTypeRequestTypeFromRILInt(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$ServiceTypeServiceTypeFromRILInt(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$TeleserviceTypeTeleserviceTypeFromRILInt(int type)

        try {
            return TeleserviceType.values()[type];
        } catch (IndexOutOfBoundsException e) {
            Rlog.e(GSMPhone.LOG_TAG, "Invalid Teleservice type");
            return null;
        }
    
public java.lang.StringtoString()

        return "[SsData] " + "ServiceType: " + serviceType
            + " RequestType: " + requestType
            + " TeleserviceType: " + teleserviceType
            + " ServiceClass: " + serviceClass
            + " Result: " + result
            + " Is Service Type CF: " + serviceType.isTypeCF();