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

 Intents related to the Contacts app UI.
 @deprecated Do not use. This is not supported.
*/
var UI = {

/** The action for the default contacts list tab.
 @deprecated Do not use. This is not supported.
*/
LIST_DEFAULT : "com.android.contacts.action.LIST_DEFAULT",
/** The action for the contacts list tab.
 @deprecated Do not use. This is not supported.
*/
LIST_GROUP_ACTION : "com.android.contacts.action.LIST_GROUP",
/** When in LIST_GROUP_ACTION mode, this is the group to display.
 @deprecated Do not use. This is not supported.
*/
GROUP_NAME_EXTRA_KEY : "com.android.contacts.extra.GROUP",
/** The action for the all contacts list tab.
 @deprecated Do not use. This is not supported.
*/
LIST_ALL_CONTACTS_ACTION : "com.android.contacts.action.LIST_ALL_CONTACTS",
/** The action for the contacts with phone numbers list tab.
 @deprecated Do not use. This is not supported.
*/
LIST_CONTACTS_WITH_PHONES_ACTION : "com.android.contacts.action.LIST_CONTACTS_WITH_PHONES",
/** The action for the starred contacts list tab.
 @deprecated Do not use. This is not supported.
*/
LIST_STARRED_ACTION : "com.android.contacts.action.LIST_STARRED",
/** The action for the frequent contacts list tab.
 @deprecated Do not use. This is not supported.
*/
LIST_FREQUENT_ACTION : "com.android.contacts.action.LIST_FREQUENT",
/** The action for the "strequent" contacts list tab. It first lists the starred
 contacts in alphabetical order and then the frequent contacts in descending
 order of the number of times they have been contacted.
 @deprecated Do not use. This is not supported.
*/
LIST_STREQUENT_ACTION : "com.android.contacts.action.LIST_STREQUENT",
/** A key for to be used as an intent extra to set the activity
 title to a custom String value.
 @deprecated Do not use. This is not supported.
*/
TITLE_EXTRA_KEY : "com.android.contacts.extra.TITLE_EXTRA",
/** Activity Action: Display a filtered list of contacts
 <p>
 Input: Extra field {@link #FILTER_TEXT_EXTRA_KEY} is the text to use for
 filtering
 <p>
 Output: Nothing.
 @deprecated Do not use. This is not supported.
*/
FILTER_CONTACTS_ACTION : "com.android.contacts.action.FILTER_CONTACTS",
/** Used as an int extra field in {@link #FILTER_CONTACTS_ACTION}
 intents to supply the text on which to filter.
 @deprecated Do not use. This is not supported.
*/
FILTER_TEXT_EXTRA_KEY : "com.android.contacts.extra.FILTER_TEXT",

};