FileDocCategorySizeDatePackage
SuppServiceNotification.javaAPI DocAndroid 1.5 API2900Wed May 06 22:42:02 BST 2009com.android.internal.telephony.gsm

SuppServiceNotification

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

Fields Summary
public int
notificationType
Type of notification: 0 = MO; 1 = MT
public int
code
TS 27.007 7.17 "code1" or "code2"
public int
index
TS 27.007 7.17 "index"
public int
type
TS 27.007 7.17 "type" (MT only)
public String
number
TS 27.007 7.17 "number" (MT only)
public static final int
MO_CODE_UNCONDITIONAL_CF_ACTIVE
public static final int
MO_CODE_SOME_CF_ACTIVE
public static final int
MO_CODE_CALL_FORWARDED
public static final int
MO_CODE_CALL_IS_WAITING
public static final int
MO_CODE_CUG_CALL
public static final int
MO_CODE_OUTGOING_CALLS_BARRED
public static final int
MO_CODE_INCOMING_CALLS_BARRED
public static final int
MO_CODE_CLIR_SUPPRESSION_REJECTED
public static final int
MO_CODE_CALL_DEFLECTED
public static final int
MT_CODE_FORWARDED_CALL
public static final int
MT_CODE_CUG_CALL
public static final int
MT_CODE_CALL_ON_HOLD
public static final int
MT_CODE_CALL_RETRIEVED
public static final int
MT_CODE_MULTI_PARTY_CALL
public static final int
MT_CODE_ON_HOLD_CALL_RELEASED
public static final int
MT_CODE_FORWARD_CHECK_RECEIVED
public static final int
MT_CODE_CALL_CONNECTING_ECT
public static final int
MT_CODE_CALL_CONNECTED_ECT
public static final int
MT_CODE_DEFLECTED_CALL
public static final int
MT_CODE_ADDITIONAL_CALL_FORWARDED
Constructors Summary
Methods Summary
public java.lang.StringtoString()


      
    
        return super.toString() + " mobile"
            + (notificationType == 0 ? " originated " : " terminated ")
            + " code: " + code
            + " index: " + index
            + " \""
            + PhoneNumberUtils.stringFromStringAndTOA(number, type) + "\" ";