/* * Copyright (C) 2012 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.internal.telephony; /** * @hide */ public class PhoneConstants { /** * The phone state. One of the following:

*

*/ public enum State { IDLE, RINGING, OFFHOOK; }; /** * The state of a data connection. * */ public enum DataState { CONNECTED, CONNECTING, DISCONNECTED, SUSPENDED; }; public static final String STATE_KEY = "state"; // Radio Type public static final int PHONE_TYPE_NONE = RILConstants.NO_PHONE; public static final int PHONE_TYPE_GSM = RILConstants.GSM_PHONE; public static final int PHONE_TYPE_CDMA = RILConstants.CDMA_PHONE; public static final int PHONE_TYPE_SIP = RILConstants.SIP_PHONE; // Modes for LTE_ON_CDMA public static final int LTE_ON_CDMA_UNKNOWN = RILConstants.LTE_ON_CDMA_UNKNOWN; public static final int LTE_ON_CDMA_FALSE = RILConstants.LTE_ON_CDMA_FALSE; public static final int LTE_ON_CDMA_TRUE = RILConstants.LTE_ON_CDMA_TRUE; // Number presentation type for caller id display (From internal/Conneciton.java) public static int PRESENTATION_ALLOWED = 1; // normal public static int PRESENTATION_RESTRICTED = 2; // block by user public static int PRESENTATION_UNKNOWN = 3; // no specified or unknown by network public static int PRESENTATION_PAYPHONE = 4; // show pay phone info public static final String PHONE_NAME_KEY = "phoneName"; public static final String FAILURE_REASON_KEY = "reason"; public static final String STATE_CHANGE_REASON_KEY = "reason"; public static final String DATA_APN_TYPE_KEY = "apnType"; public static final String DATA_APN_KEY = "apn"; public static final String DATA_LINK_PROPERTIES_KEY = "linkProperties"; public static final String DATA_LINK_CAPABILITIES_KEY = "linkCapabilities"; public static final String DATA_IFACE_NAME_KEY = "iface"; public static final String NETWORK_UNAVAILABLE_KEY = "networkUnvailable"; public static final String DATA_NETWORK_ROAMING_KEY = "networkRoaming"; public static final String PHONE_IN_ECM_STATE = "phoneinECMState"; public static final String REASON_LINK_PROPERTIES_CHANGED = "linkPropertiesChanged"; /** * Return codes for enableApnType() */ public static final int APN_ALREADY_ACTIVE = 0; public static final int APN_REQUEST_STARTED = 1; public static final int APN_TYPE_NOT_AVAILABLE = 2; public static final int APN_REQUEST_FAILED = 3; public static final int APN_ALREADY_INACTIVE = 4; /** * APN types for data connections. These are usage categories for an APN * entry. One APN entry may support multiple APN types, eg, a single APN * may service regular internet traffic ("default") as well as MMS-specific * connections.
* APN_TYPE_ALL is a special type to indicate that this APN entry can * service all data connections. */ public static final String APN_TYPE_ALL = "*"; /** APN type for default data traffic */ public static final String APN_TYPE_DEFAULT = "default"; /** APN type for MMS traffic */ public static final String APN_TYPE_MMS = "mms"; /** APN type for SUPL assisted GPS */ public static final String APN_TYPE_SUPL = "supl"; /** APN type for DUN traffic */ public static final String APN_TYPE_DUN = "dun"; /** APN type for HiPri traffic */ public static final String APN_TYPE_HIPRI = "hipri"; /** APN type for FOTA */ public static final String APN_TYPE_FOTA = "fota"; /** APN type for IMS */ public static final String APN_TYPE_IMS = "ims"; /** APN type for CBS */ public static final String APN_TYPE_CBS = "cbs"; }