protected static interface CalendarContract.SyncColumns extends CalendarContract.CalendarSyncColumns
Modifier and Type | Field and Description |
---|---|
static String |
_SYNC_ID
The unique ID for a row assigned by the sync source.
|
static String |
ACCOUNT_NAME
The account that was used to sync the entry to the device.
|
static String |
ACCOUNT_TYPE
The type of the account that was used to sync the entry to the
device.
|
static String |
CAN_PARTIALLY_UPDATE
If set to 1 this causes events on this calendar to be duplicated with
CalendarContract.EventsColumns.LAST_SYNCED set to 1 whenever the event
transitions from non-dirty to dirty. |
static String |
DELETED
Whether the row has been deleted but not synced to the server.
|
static String |
DIRTY
Used to indicate that local, unsynced, changes are present.
|
static final String ACCOUNT_NAME
CalendarContract.ACCOUNT_TYPE_LOCAL
then the name and
type must match an account on the device or the calendar will be
deleted.
Type: TEXT
static final String ACCOUNT_TYPE
CalendarContract.ACCOUNT_TYPE_LOCAL
will keep this event
form being deleted if there are no matching accounts on the device.
Type: TEXT
static final String _SYNC_ID
BaseColumns._ID
.
Type: TEXT
static final String DIRTY
Type: INTEGER (long)
static final String DELETED
Type: INTEGER (boolean)
static final String CAN_PARTIALLY_UPDATE
CalendarContract.EventsColumns.LAST_SYNCED
set to 1 whenever the event
transitions from non-dirty to dirty. The duplicated event will not be
expanded in the instances table and will only show up in sync adapter
queries of the events table. It will also be deleted when the
originating event has its dirty flag cleared by the sync adapter.
Type: INTEGER (boolean)