/**@class android.provider.Telephony.CellBroadcasts
 implements android.provider.BaseColumns

@extends java.lang.Object

 Contains received SMS cell broadcast messages.
 @hide
*/
var CellBroadcasts = {

/** The {@code content://} URI for this table.
*/
CONTENT_URI : "null",
/** Message geographical scope.
 <P>Type: INTEGER</P>
*/
GEOGRAPHICAL_SCOPE : "geo_scope",
/** Message serial number.
 <P>Type: INTEGER</P>
*/
SERIAL_NUMBER : "serial_number",
/** PLMN of broadcast sender. {@code SERIAL_NUMBER + PLMN + LAC + CID} uniquely identifies
 a broadcast for duplicate detection purposes.
 <P>Type: TEXT</P>
*/
PLMN : "plmn",
/** Location Area (GSM) or Service Area (UMTS) of broadcast sender. Unused for CDMA.
 Only included if Geographical Scope of message is not PLMN wide (01).
 <P>Type: INTEGER</P>
*/
LAC : "lac",
/** Cell ID of message sender (GSM/UMTS). Unused for CDMA. Only included when the
 Geographical Scope of message is cell wide (00 or 11).
 <P>Type: INTEGER</P>
*/
CID : "cid",
/** Message code. <em>OBSOLETE: merged into SERIAL_NUMBER.</em>
 <P>Type: INTEGER</P>
*/
V1_MESSAGE_CODE : "message_code",
/** Message identifier. <em>OBSOLETE: renamed to SERVICE_CATEGORY.</em>
 <P>Type: INTEGER</P>
*/
V1_MESSAGE_IDENTIFIER : "message_id",
/** Service category (GSM/UMTS: message identifier; CDMA: service category).
 <P>Type: INTEGER</P>
*/
SERVICE_CATEGORY : "service_category",
/** Message language code.
 <P>Type: TEXT</P>
*/
LANGUAGE_CODE : "language",
/** Message body.
 <P>Type: TEXT</P>
*/
MESSAGE_BODY : "body",
/** Message delivery time.
 <P>Type: INTEGER (long)</P>
*/
DELIVERY_TIME : "date",
/** Has the message been viewed?
 <P>Type: INTEGER (boolean)</P>
*/
MESSAGE_READ : "read",
/** Message format (3GPP or 3GPP2).
 <P>Type: INTEGER</P>
*/
MESSAGE_FORMAT : "format",
/** Message priority (including emergency).
 <P>Type: INTEGER</P>
*/
MESSAGE_PRIORITY : "priority",
/** ETWS warning type (ETWS alerts only).
 <P>Type: INTEGER</P>
*/
ETWS_WARNING_TYPE : "etws_warning_type",
/** CMAS message class (CMAS alerts only).
 <P>Type: INTEGER</P>
*/
CMAS_MESSAGE_CLASS : "cmas_message_class",
/** CMAS category (CMAS alerts only).
 <P>Type: INTEGER</P>
*/
CMAS_CATEGORY : "cmas_category",
/** CMAS response type (CMAS alerts only).
 <P>Type: INTEGER</P>
*/
CMAS_RESPONSE_TYPE : "cmas_response_type",
/** CMAS severity (CMAS alerts only).
 <P>Type: INTEGER</P>
*/
CMAS_SEVERITY : "cmas_severity",
/** CMAS urgency (CMAS alerts only).
 <P>Type: INTEGER</P>
*/
CMAS_URGENCY : "cmas_urgency",
/** CMAS certainty (CMAS alerts only).
 <P>Type: INTEGER</P>
*/
CMAS_CERTAINTY : "cmas_certainty",
/**The default sort order for this table. */
DEFAULT_SORT_ORDER : "date DESC",
/** Query columns for instantiating {@link android.telephony.CellBroadcastMessage} objects.
*/
QUERY_COLUMNS : "null",

};