/**@class android.provider.Contacts.Intents.Insert @extends java.lang.Object Convenience class that contains string constants used to create contact {@link android.content.Intent android.provider.Contacts.Intents}. @deprecated see {@link android.provider.ContactsContract} */ var Insert = { /**The action code to use when adding a contact @deprecated see {@link android.provider.ContactsContract} */ ACTION : "android.intent.action.INSERT", /** If present, forces a bypass of quick insert mode. @deprecated see {@link android.provider.ContactsContract} */ FULL_MODE : "full_mode", /** The extra field for the contact name. <P>Type: String</P> @deprecated see {@link android.provider.ContactsContract} */ NAME : "name", /** The extra field for the contact phonetic name. <P>Type: String</P> @deprecated see {@link android.provider.ContactsContract} */ PHONETIC_NAME : "phonetic_name", /** The extra field for the contact company. <P>Type: String</P> @deprecated see {@link android.provider.ContactsContract} */ COMPANY : "company", /** The extra field for the contact job title. <P>Type: String</P> @deprecated see {@link android.provider.ContactsContract} */ JOB_TITLE : "job_title", /** The extra field for the contact notes. <P>Type: String</P> @deprecated see {@link android.provider.ContactsContract} */ NOTES : "notes", /** The extra field for the contact phone number. <P>Type: String</P> @deprecated see {@link android.provider.ContactsContract} */ PHONE : "phone", /** The extra field for the contact phone number type. <P>Type: Either an integer value from {@link android.provider.Contacts.android.provider.CommonDataKinds.PhonesColumns android.provider.CommonDataKinds.PhonesColumns}, or a string specifying a custom label.</P> @deprecated see {@link android.provider.ContactsContract} */ PHONE_TYPE : "phone_type", /** The extra field for the phone isprimary flag. <P>Type: boolean</P> @deprecated see {@link android.provider.ContactsContract} */ PHONE_ISPRIMARY : "phone_isprimary", /** The extra field for an optional second contact phone number. <P>Type: String</P> @deprecated see {@link android.provider.ContactsContract} */ SECONDARY_PHONE : "secondary_phone", /** The extra field for an optional second contact phone number type. <P>Type: Either an integer value from {@link android.provider.Contacts.android.provider.CommonDataKinds.PhonesColumns android.provider.CommonDataKinds.PhonesColumns}, or a string specifying a custom label.</P> @deprecated see {@link android.provider.ContactsContract} */ SECONDARY_PHONE_TYPE : "secondary_phone_type", /** The extra field for an optional third contact phone number. <P>Type: String</P> @deprecated see {@link android.provider.ContactsContract} */ TERTIARY_PHONE : "tertiary_phone", /** The extra field for an optional third contact phone number type. <P>Type: Either an integer value from {@link android.provider.Contacts.android.provider.CommonDataKinds.PhonesColumns android.provider.CommonDataKinds.PhonesColumns}, or a string specifying a custom label.</P> @deprecated see {@link android.provider.ContactsContract} */ TERTIARY_PHONE_TYPE : "tertiary_phone_type", /** The extra field for the contact email address. <P>Type: String</P> @deprecated see {@link android.provider.ContactsContract} */ EMAIL : "email", /** The extra field for the contact email type. <P>Type: Either an integer value from {@link android.provider.Contacts.ContactMethodsColumns ContactMethodsColumns} or a string specifying a custom label.</P> @deprecated see {@link android.provider.ContactsContract} */ EMAIL_TYPE : "email_type", /** The extra field for the email isprimary flag. <P>Type: boolean</P> @deprecated see {@link android.provider.ContactsContract} */ EMAIL_ISPRIMARY : "email_isprimary", /** The extra field for an optional second contact email address. <P>Type: String</P> @deprecated see {@link android.provider.ContactsContract} */ SECONDARY_EMAIL : "secondary_email", /** The extra field for an optional second contact email type. <P>Type: Either an integer value from {@link android.provider.Contacts.ContactMethodsColumns ContactMethodsColumns} or a string specifying a custom label.</P> @deprecated see {@link android.provider.ContactsContract} */ SECONDARY_EMAIL_TYPE : "secondary_email_type", /** The extra field for an optional third contact email address. <P>Type: String</P> @deprecated see {@link android.provider.ContactsContract} */ TERTIARY_EMAIL : "tertiary_email", /** The extra field for an optional third contact email type. <P>Type: Either an integer value from {@link android.provider.Contacts.ContactMethodsColumns ContactMethodsColumns} or a string specifying a custom label.</P> @deprecated see {@link android.provider.ContactsContract} */ TERTIARY_EMAIL_TYPE : "tertiary_email_type", /** The extra field for the contact postal address. <P>Type: String</P> @deprecated see {@link android.provider.ContactsContract} */ POSTAL : "postal", /** The extra field for the contact postal address type. <P>Type: Either an integer value from {@link android.provider.Contacts.ContactMethodsColumns ContactMethodsColumns} or a string specifying a custom label.</P> @deprecated see {@link android.provider.ContactsContract} */ POSTAL_TYPE : "postal_type", /** The extra field for the postal isprimary flag. <P>Type: boolean</P> @deprecated see {@link android.provider.ContactsContract} */ POSTAL_ISPRIMARY : "postal_isprimary", /** The extra field for an IM handle. <P>Type: String</P> @deprecated see {@link android.provider.ContactsContract} */ IM_HANDLE : "im_handle", /** The extra field for the IM protocol <P>Type: the result of {@link android.provider.Contacts.ContactMethods#encodePredefinedImProtocol} or {@link android.provider.Contacts.ContactMethods#encodeCustomImProtocol}.</P> @deprecated see {@link android.provider.ContactsContract} */ IM_PROTOCOL : "im_protocol", /** The extra field for the IM isprimary flag. <P>Type: boolean</P> @deprecated see {@link android.provider.ContactsContract} */ IM_ISPRIMARY : "im_isprimary", };