FileDocCategorySizeDatePackage
CdmaCallWaitingNotification.javaAPI DocAndroid 5.1 API2359Thu Mar 12 22:22:54 GMT 2015com.android.internal.telephony.cdma

CdmaCallWaitingNotification

public class CdmaCallWaitingNotification extends Object
Represents a Supplementary Service Notification received from the network. {@hide}

Fields Summary
static final String
LOG_TAG
public String
number
public int
numberPresentation
public String
name
public int
namePresentation
public int
numberType
public int
numberPlan
public int
isPresent
public int
signalType
public int
alertPitch
public int
signal
Constructors Summary
Methods Summary
public static intpresentationFromCLIP(int cli)

        switch(cli) {
            case 0: return PhoneConstants.PRESENTATION_ALLOWED;
            case 1: return PhoneConstants.PRESENTATION_RESTRICTED;
            case 2: return PhoneConstants.PRESENTATION_UNKNOWN;
            default:
                // This shouldn't happen, just log an error and treat as Unknown
                Rlog.d(LOG_TAG, "Unexpected presentation " + cli);
                return PhoneConstants.PRESENTATION_UNKNOWN;
        }
    
public java.lang.StringtoString()


    
      
    
        return super.toString() + "Call Waiting Notification  "
            + " number: " + number
            + " numberPresentation: " + numberPresentation
            + " name: " + name
            + " namePresentation: " + namePresentation
            + " numberType: " + numberType
            + " numberPlan: " + numberPlan
            + " isPresent: " + isPresent
            + " signalType: " + signalType
            + " alertPitch: " + alertPitch
            + " signal: " + signal ;