a_vcard.android.provider
Interface Contacts.PeopleColumns

All Known Implementing Classes:
Contacts.ContactMethods, Contacts.Phones
Enclosing class:
Contacts

public static interface Contacts.PeopleColumns

Columns from the People table that other tables join into themselves.


Field Summary
static java.lang.String CUSTOM_RINGTONE
          A custom ringtone associated with a person.
static java.lang.String DISPLAY_NAME
          The display name.
static java.lang.String LAST_TIME_CONTACTED
          The last time a person was contacted.
static java.lang.String NAME
          The person's name.
static java.lang.String NOTES
          Notes about the person.
static java.lang.String PHONETIC_NAME
          Phonetic equivalent of the person's name, in a locale-dependent character set (e.g.
static java.lang.String PHOTO_VERSION
          The server version of the photo
static java.lang.String SEND_TO_VOICEMAIL
          Whether the person should always be sent to voicemail.
static java.lang.String SORT_STRING
          The field for sorting list phonetically.
static java.lang.String STARRED
          Is the contact starred?
static java.lang.String TIMES_CONTACTED
          The number of times a person has been contacted
 

Field Detail

NAME

static final java.lang.String NAME
The person's name.

Type: TEXT

See Also:
Constant Field Values

PHONETIC_NAME

static final java.lang.String PHONETIC_NAME
Phonetic equivalent of the person's name, in a locale-dependent character set (e.g. hiragana for Japanese). Used for pronunciation and/or collation in some languages.

Type: TEXT

See Also:
Constant Field Values

DISPLAY_NAME

static final java.lang.String DISPLAY_NAME
The display name. If name is not null name, else if number is not null number, else if email is not null email.

Type: TEXT

See Also:
Constant Field Values

SORT_STRING

static final java.lang.String SORT_STRING
The field for sorting list phonetically. The content of this field may not be human readable but phonetically sortable.

Type: TEXT

See Also:
Constant Field Values

NOTES

static final java.lang.String NOTES
Notes about the person.

Type: TEXT

See Also:
Constant Field Values

TIMES_CONTACTED

static final java.lang.String TIMES_CONTACTED
The number of times a person has been contacted

Type: INTEGER

See Also:
Constant Field Values

LAST_TIME_CONTACTED

static final java.lang.String LAST_TIME_CONTACTED
The last time a person was contacted.

Type: INTEGER

See Also:
Constant Field Values

CUSTOM_RINGTONE

static final java.lang.String CUSTOM_RINGTONE
A custom ringtone associated with a person. Not always present.

Type: TEXT (URI to the ringtone)

See Also:
Constant Field Values

SEND_TO_VOICEMAIL

static final java.lang.String SEND_TO_VOICEMAIL
Whether the person should always be sent to voicemail. Not always present.

Type: INTEGER (0 for false, 1 for true)

See Also:
Constant Field Values

STARRED

static final java.lang.String STARRED
Is the contact starred?

Type: INTEGER (boolean)

See Also:
Constant Field Values

PHOTO_VERSION

static final java.lang.String PHOTO_VERSION
The server version of the photo

Type: TEXT (the version number portion of the photo URI)

See Also:
Constant Field Values