protected static interface ContactsContract.RawContactsColumns
Modifier and Type | Field and Description |
---|---|
static String |
ACCOUNT_TYPE_AND_DATA_SET
A concatenation of the account type and data set (delimited by a forward
slash) - if the data set is empty, this will be the same as the account
type.
|
static String |
AGGREGATION_MODE
The aggregation mode for this contact.
|
static String |
BACKUP_ID
Persistent unique id for each raw_contact within its account.
|
static String |
CONTACT_ID
A reference to the
BaseColumns._ID that this
data belongs to. |
static String |
DATA_SET
The data set within the account that this row belongs to.
|
static String |
DELETED
The "deleted" flag: "0" by default, "1" if the row has been marked
for deletion.
|
static String |
METADATA_DIRTY
Flag indicating that a raw contact's metadata has changed, and its metadata
needs to be synchronized by the server.
|
static String |
RAW_CONTACT_IS_READ_ONLY
The "read-only" flag: "0" by default, "1" if the row cannot be modified or
deleted except by a sync adapter.
|
static String |
RAW_CONTACT_IS_USER_PROFILE
Flag that reflects whether this raw contact belongs to the user's
personal profile entry.
|
static final String CONTACT_ID
BaseColumns._ID
that this
data belongs to.
Type: INTEGER
static final String BACKUP_ID
static final String DATA_SET
Type: TEXT
static final String ACCOUNT_TYPE_AND_DATA_SET
This column does *not* escape forward slashes in the account type or the data set.
If this is an issue, consider using
ContactsContract.SyncColumns.ACCOUNT_TYPE
and
DATA_SET
directly.
static final String AGGREGATION_MODE
Type: INTEGER
static final String DELETED
ContentResolver.delete(android.net.Uri, java.lang.String, java.lang.String[])
is
called on a raw contact, it is marked for deletion and removed from its
aggregate contact. The sync adaptor deletes the raw contact on the server and
then calls ContactResolver.delete once more, this time passing the
ContactsContract.CALLER_IS_SYNCADAPTER
query parameter to finalize
the data removal.
Type: INTEGER
static final String RAW_CONTACT_IS_READ_ONLY
ContactsContract.CALLER_IS_SYNCADAPTER
.
Type: INTEGER
static final String RAW_CONTACT_IS_USER_PROFILE
static final String METADATA_DIRTY
Type: INTEGER (boolean)