protected static interface CalendarContract.CalendarColumns
Modifier and Type | Field and Description |
---|---|
static String |
ALLOWED_ATTENDEE_TYPES
A comma separated list of attendee types supported for this calendar
in the format "#,#,#".
|
static String |
ALLOWED_AVAILABILITY
A comma separated list of availability types supported for this
calendar in the format "#,#,#".
|
static String |
ALLOWED_REMINDERS
A comma separated list of reminder methods supported for this
calendar in the format "#,#,#".
|
static int |
CAL_ACCESS_CONTRIBUTOR
Full access to modify the calendar, but not the access control
settings
|
static int |
CAL_ACCESS_EDITOR
Full access to modify the calendar, but not the access control
settings
|
static int |
CAL_ACCESS_FREEBUSY
Can only see free/busy information about the calendar
|
static int |
CAL_ACCESS_NONE
Cannot access the calendar
|
static int |
CAL_ACCESS_OVERRIDE
not used
|
static int |
CAL_ACCESS_OWNER
Full access to the calendar
|
static int |
CAL_ACCESS_READ
Can read all event details
|
static int |
CAL_ACCESS_RESPOND
Can reply yes/no/maybe to an event
|
static int |
CAL_ACCESS_ROOT
Domain admin
|
static String |
CALENDAR_ACCESS_LEVEL
The level of access that the user has for the calendar
Type: INTEGER (one of the values below)
|
static String |
CALENDAR_COLOR
The color of the calendar.
|
static String |
CALENDAR_COLOR_KEY
A key for looking up a color from the
CalendarContract.Colors table. |
static String |
CALENDAR_DISPLAY_NAME
The display name of the calendar.
|
static String |
CALENDAR_TIME_ZONE
The time zone the calendar is associated with.
|
static String |
CAN_MODIFY_TIME_ZONE
Can the organizer modify the time zone of the event?
|
static String |
CAN_ORGANIZER_RESPOND
Can the organizer respond to the event?
|
static String |
IS_PRIMARY
Is this the primary calendar for this account.
|
static String |
MAX_REMINDERS
The maximum number of reminders allowed for an event.
|
static String |
OWNER_ACCOUNT
The owner account for this calendar, based on the calendar feed.
|
static String |
SYNC_EVENTS
Is this calendar synced and are its events stored on the device?
|
static String |
VISIBLE
Is the calendar selected to be displayed?
|
static final String CALENDAR_COLOR
Type: INTEGER (color value)
static final String CALENDAR_COLOR_KEY
CalendarContract.Colors
table. NULL or
an empty string are reserved for indicating that the calendar does
not use a key for looking up the color. The provider will update
CALENDAR_COLOR
automatically when a valid key is written to
this column. The key must reference an existing row of the
CalendarContract.Colors
table. @see Colors
Type: TEXT
static final String CALENDAR_DISPLAY_NAME
Type: TEXT
static final String CALENDAR_ACCESS_LEVEL
Type: INTEGER (one of the values below)
static final int CAL_ACCESS_NONE
static final int CAL_ACCESS_FREEBUSY
static final int CAL_ACCESS_READ
static final int CAL_ACCESS_RESPOND
static final int CAL_ACCESS_OVERRIDE
static final int CAL_ACCESS_CONTRIBUTOR
static final int CAL_ACCESS_EDITOR
static final int CAL_ACCESS_OWNER
static final int CAL_ACCESS_ROOT
static final String VISIBLE
Type: INTEGER (boolean)
static final String CALENDAR_TIME_ZONE
Type: TEXT
static final String SYNC_EVENTS
Type: INTEGER (boolean)
static final String OWNER_ACCOUNT
Type: String
static final String CAN_ORGANIZER_RESPOND
Type: INTEGER (boolean)
static final String CAN_MODIFY_TIME_ZONE
Type: INTEGER (boolean)
static final String MAX_REMINDERS
Type: INTEGER
static final String ALLOWED_REMINDERS
CalendarContract.RemindersColumns.METHOD_DEFAULT
, CalendarContract.RemindersColumns.METHOD_ALERT
,
CalendarContract.RemindersColumns.METHOD_EMAIL
, CalendarContract.RemindersColumns.METHOD_SMS
,
CalendarContract.RemindersColumns.METHOD_ALARM
. Column name.
Type: TEXT
static final String ALLOWED_AVAILABILITY
CalendarContract.EventsColumns.AVAILABILITY_BUSY
, CalendarContract.EventsColumns.AVAILABILITY_FREE
,
CalendarContract.EventsColumns.AVAILABILITY_TENTATIVE
. Setting this field to only
CalendarContract.EventsColumns.AVAILABILITY_BUSY
should be used to indicate that
changing the availability is not supported.static final String ALLOWED_ATTENDEE_TYPES
CalendarContract.AttendeesColumns.TYPE_NONE
,
CalendarContract.AttendeesColumns.TYPE_OPTIONAL
, CalendarContract.AttendeesColumns.TYPE_REQUIRED
,
CalendarContract.AttendeesColumns.TYPE_RESOURCE
. Setting this field to only
CalendarContract.AttendeesColumns.TYPE_NONE
should be used to indicate that changing
the attendee type is not supported.static final String IS_PRIMARY
CalendarContract.SyncColumns.ACCOUNT_NAME
is equal to
OWNER_ACCOUNT
.