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

@extends java.lang.Object

 Contains all MMS and SMS messages.
*/
var MmsSms = {

/** The column to distinguish SMS and MMS messages in query results.
*/
TYPE_DISCRIMINATOR_COLUMN : "transport_type",
/** The {@code content://} style URL for this table.
*/
CONTENT_URI : "null",
/** The {@code content://} style URL for this table, by conversation.
*/
CONTENT_CONVERSATIONS_URI : "null",
/** The {@code content://} style URL for this table, by phone number.
*/
CONTENT_FILTER_BYPHONE_URI : "null",
/** The {@code content://} style URL for undelivered messages in this table.
*/
CONTENT_UNDELIVERED_URI : "null",
/** The {@code content://} style URL for draft messages in this table.
*/
CONTENT_DRAFT_URI : "null",
/** The {@code content://} style URL for locked messages in this table.
*/
CONTENT_LOCKED_URI : "null",
/** Pass in a query parameter called "pattern" which is the text to search for.
 The sort order is fixed to be: {@code thread_id ASC, date DESC}.
*/
SEARCH_URI : "null",
/**SMS protocol type. */
SMS_PROTO : "0",
/**MMS protocol type. */
MMS_PROTO : "1",
/**Error type: no error. */
NO_ERROR : "0",
/**Error type: generic transient error. */
ERR_TYPE_GENERIC : "1",
/**Error type: SMS protocol transient error. */
ERR_TYPE_SMS_PROTO_TRANSIENT : "2",
/**Error type: MMS protocol transient error. */
ERR_TYPE_MMS_PROTO_TRANSIENT : "3",
/**Error type: transport failure. */
ERR_TYPE_TRANSPORT_FAILURE : "4",
/**Error type: permanent error (along with all higher error values). */
ERR_TYPE_GENERIC_PERMANENT : "10",
/**Error type: SMS protocol permanent error. */
ERR_TYPE_SMS_PROTO_PERMANENT : "11",
/**Error type: MMS protocol permanent error. */
ERR_TYPE_MMS_PROTO_PERMANENT : "12",

};