EventsColumns
protected interface EventsColumns
android.provider.CalendarContract.EventsColumns |
Columns from the Events table that other tables join into themselves.
Summary
Constants | |
---|---|
static Int |
Confidential is not used by the app. |
static Int |
Default access is controlled by the server and will be treated as public on the device. |
static String |
Defines how the event shows up for others when the calendar is shared. |
static Int |
Private shares the event as a free/busy slot with no details. |
static Int |
Public makes the contents visible to anyone with access to the calendar. |
static String |
Is the event all day (time zone independent). |
static String |
If this event counts as busy time or is still free time that can be scheduled over. |
static Int |
Indicates that this event takes up time and will conflict with other events. |
static Int |
Indicates that this event is free time and will not conflict with other events. |
static Int |
Indicates that the owner's availability may change, but should be considered busy time that will conflict. |
static String |
The |
static String |
Whether the user can invite others to the event. |
static String |
The package name of the custom app that can provide a richer experience for the event. |
static String |
The URI used by the custom app for the event. |
static String |
The description of the event. |
static String |
This will be |
static String |
The time the event ends in UTC millis since epoch. |
static String |
The time the event starts in UTC millis since epoch. |
static String |
The duration of the event in RFC2445 format. |
static String |
A secondary color for the individual event. |
static String |
A secondary color key for the individual event. |
static String |
The timezone for the end time of the event. |
static String |
Where the event takes place. |
static String |
The timezone for the event. |
static String |
The recurrence exception dates for the event. |
static String |
The recurrence exception rule for the event. |
static String |
Whether guests can invite other guests. |
static String |
Whether guests can modify the event. |
static String |
Whether guests can see the list of attendees. |
static String |
Whether the event has an alarm or not. |
static String |
Whether the event has attendee information. |
static String |
Whether the event has extended properties or not. |
static String |
Are we the organizer of this event. |
static String |
The last date this event repeats on, or NULL if it never ends. |
static String |
Used to indicate that a row is not a real event but an original copy of a locally modified event. |
static String |
Email of the organizer (owner) of the event. |
static String |
The allDay status (true or false) of the original recurring event for which this event is an exception. |
static String |
The |
static String |
The original instance time of the recurring event for which this event is an exception. |
static String |
The _sync_id of the original recurring event for which this event is an exception. |
static String |
The recurrence dates for the event. |
static String |
The recurrence rule for the event. |
static String |
This is a copy of the attendee status for the owner of this event. |
static String |
The event status. |
static Int | |
static Int | |
static Int | |
static String |
This column is available for use by sync adapters. |
static String |
This column is available for use by sync adapters. |
static String |
This column is available for use by sync adapters. |
static String |
This column is available for use by sync adapters. |
static String |
This column is available for use by sync adapters. |
static String |
This column is available for use by sync adapters. |
static String |
This column is available for use by sync adapters. |
static String |
This column is available for use by sync adapters. |
static String |
This column is available for use by sync adapters. |
static String |
This column is available for use by sync adapters. |
static String |
The title of the event. |
static String |
The UID for events added from the RFC 2445 iCalendar format. |
Constants
ACCESS_CONFIDENTIAL
static val ACCESS_CONFIDENTIAL: Int
Confidential is not used by the app.
Value: 1
ACCESS_DEFAULT
static val ACCESS_DEFAULT: Int
Default access is controlled by the server and will be treated as public on the device.
Value: 0
ACCESS_LEVEL
static val ACCESS_LEVEL: String
Defines how the event shows up for others when the calendar is shared. Column name.
Type: INTEGER (One of ACCESS_DEFAULT
, ...)
Value: "accessLevel"
ACCESS_PRIVATE
static val ACCESS_PRIVATE: Int
Private shares the event as a free/busy slot with no details.
Value: 2
ACCESS_PUBLIC
static val ACCESS_PUBLIC: Int
Public makes the contents visible to anyone with access to the calendar.
Value: 3
ALL_DAY
static val ALL_DAY: String
Is the event all day (time zone independent). Column name.
Type: INTEGER (boolean)
Value: "allDay"
AVAILABILITY
static val AVAILABILITY: String
If this event counts as busy time or is still free time that can be scheduled over. Column name.
Type: INTEGER (One of AVAILABILITY_BUSY
, AVAILABILITY_FREE
, AVAILABILITY_TENTATIVE
)
Value: "availability"
AVAILABILITY_BUSY
static val AVAILABILITY_BUSY: Int
Indicates that this event takes up time and will conflict with other events.
Value: 0
AVAILABILITY_FREE
static val AVAILABILITY_FREE: Int
Indicates that this event is free time and will not conflict with other events.
Value: 1
AVAILABILITY_TENTATIVE
static val AVAILABILITY_TENTATIVE: Int
Indicates that the owner's availability may change, but should be considered busy time that will conflict.
Value: 2
CALENDAR_ID
static val CALENDAR_ID: String
The Calendars#_ID
of the calendar the event belongs to. Column name.
Type: INTEGER
Value: "calendar_id"
CAN_INVITE_OTHERS
static val CAN_INVITE_OTHERS: String
Whether the user can invite others to the event. The GUESTS_CAN_INVITE_OTHERS is a setting that applies to an arbitrary guest, while CAN_INVITE_OTHERS indicates if the user can invite others (either through GUESTS_CAN_INVITE_OTHERS or because the user has modify access to the event). Column name.
Type: INTEGER (boolean, readonly)
Value: "canInviteOthers"
CUSTOM_APP_PACKAGE
static val CUSTOM_APP_PACKAGE: String
The package name of the custom app that can provide a richer experience for the event. See the ACTION TYPE CalendarContract#ACTION_HANDLE_CUSTOM_EVENT
for details. Column name.
Type: TEXT
Value: "customAppPackage"
CUSTOM_APP_URI
static val CUSTOM_APP_URI: String
The URI used by the custom app for the event. Column name.
Type: TEXT
Value: "customAppUri"
DESCRIPTION
static val DESCRIPTION: String
The description of the event. Column name.
Type: TEXT
Value: "description"
DISPLAY_COLOR
static val DISPLAY_COLOR: String
This will be EVENT_COLOR
if it is not null; otherwise, this will be Calendars#CALENDAR_COLOR
. Read-only value. To modify, write to EVENT_COLOR
or Calendars#CALENDAR_COLOR
directly.
Type: INTEGER
Value: "displayColor"
DTEND
static val DTEND: String
The time the event ends in UTC millis since epoch. Column name.
Type: INTEGER (long; millis since epoch)
Value: "dtend"
DTSTART
static val DTSTART: String
The time the event starts in UTC millis since epoch. Column name.
Type: INTEGER (long; millis since epoch)
Value: "dtstart"
DURATION
static val DURATION: String
The duration of the event in RFC2445 format. Column name.
Type: TEXT (duration in RFC2445 format)
Value: "duration"
EVENT_COLOR
static val EVENT_COLOR: String
A secondary color for the individual event. This should only be updated by the sync adapter for a given account.
Type: INTEGER
Value: "eventColor"
EVENT_COLOR_KEY
static val EVENT_COLOR_KEY: String
A secondary color key for the individual event. NULL or an empty string are reserved for indicating that the event does not use a key for looking up the color. The provider will update EVENT_COLOR
automatically when a valid key is written to this column. The key must reference an existing row of the Colors
table. @see Colors
Type: TEXT
Value: "eventColor_index"
EVENT_END_TIMEZONE
static val EVENT_END_TIMEZONE: String
The timezone for the end time of the event. Column name.
Type: TEXT
Value: "eventEndTimezone"
EVENT_LOCATION
static val EVENT_LOCATION: String
Where the event takes place. Column name.
Type: TEXT
Value: "eventLocation"
EVENT_TIMEZONE
static val EVENT_TIMEZONE: String
The timezone for the event. Column name.
Type: TEXT
Value: "eventTimezone"
EXDATE
static val EXDATE: String
The recurrence exception dates for the event. Column name.
Type: TEXT
Value: "exdate"
EXRULE
static val EXRULE: String
The recurrence exception rule for the event. Column name.
Type: TEXT
Value: "exrule"
GUESTS_CAN_INVITE_OTHERS
static val GUESTS_CAN_INVITE_OTHERS: String
Whether guests can invite other guests. Column name.
Type: INTEGER (boolean)
Value: "guestsCanInviteOthers"
GUESTS_CAN_MODIFY
static val GUESTS_CAN_MODIFY: String
Whether guests can modify the event. Column name.
Type: INTEGER (boolean)
Value: "guestsCanModify"
GUESTS_CAN_SEE_GUESTS
static val GUESTS_CAN_SEE_GUESTS: String
Whether guests can see the list of attendees. Column name.
Type: INTEGER (boolean)
Value: "guestsCanSeeGuests"
HAS_ALARM
static val HAS_ALARM: String
Whether the event has an alarm or not. Column name.
Type: INTEGER (boolean)
Value: "hasAlarm"
HAS_ATTENDEE_DATA
static val HAS_ATTENDEE_DATA: String
Whether the event has attendee information. True if the event has full attendee data, false if the event has information about self only. Column name.
Type: INTEGER (boolean)
Value: "hasAttendeeData"
HAS_EXTENDED_PROPERTIES
static val HAS_EXTENDED_PROPERTIES: String
Whether the event has extended properties or not. Column name.
Type: INTEGER (boolean)
Value: "hasExtendedProperties"
IS_ORGANIZER
static val IS_ORGANIZER: String
Are we the organizer of this event. If this column is not explicitly set, the provider will return 1 if ORGANIZER
is equal to Calendars#OWNER_ACCOUNT
. Column name.
Type: STRING
Value: "isOrganizer"
LAST_DATE
static val LAST_DATE: String
The last date this event repeats on, or NULL if it never ends. Column name.
Type: INTEGER (long; millis since epoch)
Value: "lastDate"
LAST_SYNCED
static val LAST_SYNCED: String
Used to indicate that a row is not a real event but an original copy of a locally modified event. A copy is made when an event changes from non-dirty to dirty and the event is on a calendar with Calendars#CAN_PARTIALLY_UPDATE
set to 1. This copy does not get expanded in the instances table and is only visible in queries made by a sync adapter. The copy gets removed when the event is changed back to non-dirty by a sync adapter.
Type: INTEGER (boolean)
Value: "lastSynced"
ORGANIZER
static val ORGANIZER: String
Email of the organizer (owner) of the event. Column name.
Type: STRING
Value: "organizer"
ORIGINAL_ALL_DAY
static val ORIGINAL_ALL_DAY: String
The allDay status (true or false) of the original recurring event for which this event is an exception. Column name.
Type: INTEGER (boolean)
Value: "originalAllDay"
ORIGINAL_ID
static val ORIGINAL_ID: String
The Events#_ID
of the original recurring event for which this event is an exception. Column name.
Type: TEXT
Value: "original_id"
ORIGINAL_INSTANCE_TIME
static val ORIGINAL_INSTANCE_TIME: String
The original instance time of the recurring event for which this event is an exception. Column name.
Type: INTEGER (long; millis since epoch)
Value: "originalInstanceTime"
ORIGINAL_SYNC_ID
static val ORIGINAL_SYNC_ID: String
The _sync_id of the original recurring event for which this event is an exception. The provider should keep the original_id in sync when this is updated. Column name.
Type: TEXT
Value: "original_sync_id"
RDATE
static val RDATE: String
The recurrence dates for the event. Column name.
Type: TEXT
Value: "rdate"
RRULE
static val RRULE: String
The recurrence rule for the event. Column name.
Type: TEXT
Value: "rrule"
SELF_ATTENDEE_STATUS
static val SELF_ATTENDEE_STATUS: String
This is a copy of the attendee status for the owner of this event. This field is copied here so that we can efficiently filter out events that are declined without having to look in the Attendees table. Column name.
Type: INTEGER (int)
Value: "selfAttendeeStatus"
STATUS
static val STATUS: String
The event status. Column name.
Type: INTEGER (one of STATUS_TENTATIVE
...)
Value: "eventStatus"
SYNC_DATA1
static val SYNC_DATA1: String
This column is available for use by sync adapters. Column name.
Type: TEXT
Value: "sync_data1"
SYNC_DATA10
static val SYNC_DATA10: String
This column is available for use by sync adapters. Column name.
Type: TEXT
Value: "sync_data10"
SYNC_DATA2
static val SYNC_DATA2: String
This column is available for use by sync adapters. Column name.
Type: TEXT
Value: "sync_data2"
SYNC_DATA3
static val SYNC_DATA3: String
This column is available for use by sync adapters. Column name.
Type: TEXT
Value: "sync_data3"
SYNC_DATA4
static val SYNC_DATA4: String
This column is available for use by sync adapters. Column name.
Type: TEXT
Value: "sync_data4"
SYNC_DATA5
static val SYNC_DATA5: String
This column is available for use by sync adapters. Column name.
Type: TEXT
Value: "sync_data5"
SYNC_DATA6
static val SYNC_DATA6: String
This column is available for use by sync adapters. Column name.
Type: TEXT
Value: "sync_data6"
SYNC_DATA7
static val SYNC_DATA7: String
This column is available for use by sync adapters. Column name.
Type: TEXT
Value: "sync_data7"
SYNC_DATA8
static val SYNC_DATA8: String
This column is available for use by sync adapters. Column name.
Type: TEXT
Value: "sync_data8"
SYNC_DATA9
static val SYNC_DATA9: String
This column is available for use by sync adapters. Column name.
Type: TEXT
Value: "sync_data9"
TITLE
static val TITLE: String
The title of the event. Column name.
Type: TEXT
Value: "title"
UID_2445
static val UID_2445: String
The UID for events added from the RFC 2445 iCalendar format. Column name.
Type: TEXT
Value: "uid2445"