/**@class android.provider.Contacts.ContactMethods
 implements android.provider.BaseColumns

 implements android.provider.Contacts.ContactMethodsColumns

 implements android.provider.Contacts.PeopleColumns

@extends java.lang.Object

 This table stores all non-phone contact methods and a reference to the
 person that the contact method belongs to.
 @deprecated see {@link android.provider.ContactsContract}
*/
var ContactMethods = {

/** The column with latitude data for postal locations
 <P>Type: REAL</P>
 @deprecated see {@link android.provider.ContactsContract}
*/
POSTAL_LOCATION_LATITUDE : "data",
/** The column with longitude data for postal locations
 <P>Type: REAL</P>
 @deprecated see {@link android.provider.ContactsContract}
*/
POSTAL_LOCATION_LONGITUDE : "aux_data",
/** The predefined IM protocol types. The protocol can either be non-present, one
 of these types, or a free-form string. These cases are encoded in the AUX_DATA
 column as:
  - null
  - pre:<an integer, one of the protocols below>
  - custom:<a string>
  @deprecated see {@link android.provider.ContactsContract}
*/
PROTOCOL_AIM : "0",
/** @deprecated see {@link android.provider.ContactsContract}
*/
PROTOCOL_MSN : "1",
/** @deprecated see {@link android.provider.ContactsContract}
*/
PROTOCOL_YAHOO : "2",
/** @deprecated see {@link android.provider.ContactsContract}
*/
PROTOCOL_SKYPE : "3",
/** @deprecated see {@link android.provider.ContactsContract}
*/
PROTOCOL_QQ : "4",
/** @deprecated see {@link android.provider.ContactsContract}
*/
PROTOCOL_GOOGLE_TALK : "5",
/** @deprecated see {@link android.provider.ContactsContract}
*/
PROTOCOL_ICQ : "6",
/** @deprecated see {@link android.provider.ContactsContract}
*/
PROTOCOL_JABBER : "7",
/** The content:// style URL for this table
 @deprecated see {@link android.provider.ContactsContract}
*/
CONTENT_URI : "null",
/** The content:// style URL for sub-directory of e-mail addresses.
 @deprecated see {@link android.provider.ContactsContract}
*/
CONTENT_EMAIL_URI : "null",
/** The MIME type of {@link #CONTENT_URI} providing a directory of
 @deprecated see {@link android.provider.ContactsContract}
 phones.
*/
CONTENT_TYPE : "vnd.android.cursor.dir/contact-methods",
/** The MIME type of a {@link #CONTENT_EMAIL_URI} sub-directory of
 multiple {@link android.provider.Contacts#KIND_EMAIL} entries.
 @deprecated see {@link android.provider.ContactsContract}
*/
CONTENT_EMAIL_TYPE : "vnd.android.cursor.dir/email",
/** The MIME type of a {@link #CONTENT_EMAIL_URI} sub-directory of
 multiple {@link android.provider.Contacts#KIND_POSTAL} entries.
 @deprecated see {@link android.provider.ContactsContract}
*/
CONTENT_POSTAL_TYPE : "vnd.android.cursor.dir/postal-address",
/** The MIME type of a {@link #CONTENT_URI} sub-directory of a single
 {@link android.provider.Contacts#KIND_EMAIL} entry.
 @deprecated see {@link android.provider.ContactsContract}
*/
CONTENT_EMAIL_ITEM_TYPE : "vnd.android.cursor.item/email",
/** The MIME type of a {@link #CONTENT_URI} sub-directory of a single
 {@link android.provider.Contacts#KIND_POSTAL} entry.
 @deprecated see {@link android.provider.ContactsContract}
*/
CONTENT_POSTAL_ITEM_TYPE : "vnd.android.cursor.item/postal-address",
/** The MIME type of a {@link #CONTENT_URI} sub-directory of a single
 {@link android.provider.Contacts#KIND_IM} entry.
 @deprecated see {@link android.provider.ContactsContract}
*/
CONTENT_IM_ITEM_TYPE : "vnd.android.cursor.item/jabber-im",
/** The default sort order for this table
 @deprecated see {@link android.provider.ContactsContract}
*/
DEFAULT_SORT_ORDER : "name ASC",
/** The ID of the person this contact method is assigned to.
 <P>Type: INTEGER (long)</P>
 @deprecated see {@link android.provider.ContactsContract}
*/
PERSON_ID : "person",
/**
@deprecated see {@link android.provider.ContactsContract}
*/
encodePredefinedImProtocol : function(  ) {},

/**
@deprecated see {@link android.provider.ContactsContract}
*/
encodeCustomImProtocol : function(  ) {},

/**
@deprecated see {@link android.provider.ContactsContract}
*/
decodeImProtocol : function(  ) {},

/**This looks up the provider name defined in
 from the predefined IM protocol id.
 This is used for interacting with the IM application.
@param {Number} protocol the protocol ID
@return {String} the provider name the IM app uses for the given protocol, or null if no
 provider is defined for the given protocol
@deprecated see {@link android.provider.ContactsContract}
@hide 
*/
lookupProviderNameFromId : function(  ) {},

/**
@deprecated see {@link android.provider.ContactsContract}
*/
getDisplayLabel : function(  ) {},

/**Add a longitude and latitude location to a postal address.
@param {Object {Context}} context the context to use when updating the database
@param {Number} postalId the address to update
@param {Number} latitude the latitude for the address
@param {Number} longitude the longitude for the address
@deprecated see {@link android.provider.ContactsContract}
*/
addPostalLocation : function(  ) {},


};