/**@class android.provider.Contacts
@extends java.lang.Object

 The Contacts provider stores all information about contacts.

 @deprecated The APIs have been superseded by {@link android.provider.ContactsContract}. The newer APIs allow
 access multiple accounts and support aggregation of similar contacts. These APIs continue to
 work but will only return data for the first Google account created, which matches the original
 behavior.
*/
var Contacts = {

/** @deprecated see {@link android.provider.ContactsContract}
*/
AUTHORITY : "contacts",
/** The content:// style URL for this provider
 @deprecated see {@link android.provider.ContactsContract}
*/
CONTENT_URI : "null",
/** Signifies an email address row that is stored in the ContactMethods table
 @deprecated see {@link android.provider.ContactsContract}
*/
KIND_EMAIL : "1",
/** Signifies a postal address row that is stored in the ContactMethods table
 @deprecated see {@link android.provider.ContactsContract}
*/
KIND_POSTAL : "2",
/** Signifies an IM address row that is stored in the ContactMethods table
 @deprecated see {@link android.provider.ContactsContract}
*/
KIND_IM : "3",
/** Signifies an Organization row that is stored in the Organizations table
 @deprecated see {@link android.provider.ContactsContract}
*/
KIND_ORGANIZATION : "4",
/** Signifies a Phone row that is stored in the Phones table
 @deprecated see {@link android.provider.ContactsContract}
*/
KIND_PHONE : "5",

};