CalendarContract.Attendees
  public
  static
  final
  
  class
  CalendarContract.Attendees
  
    extends Object
  
  
  
  
  
      implements
      
        BaseColumns, 
      
        CalendarContract.AttendeesColumns, 
      
        CalendarContract.EventsColumns
      
  
  
| java.lang.Object | |
| ↳ | android.provider.CalendarContract.Attendees | 
Fields and helpers for interacting with Attendees. Each row of this table
 represents a single attendee or guest of an event. Calling
 query(android.content.ContentResolver, long, java.lang.String[]) will return a list of attendees for
 the event with the given eventId. Both apps and sync adapters may write
 to this table. There are six writable fields and all of them except
 CalendarContract.AttendeesColumns.ATTENDEE_NAME must be included when inserting a new attendee.
 They are:
 
- CalendarContract.AttendeesColumns.EVENT_ID
- CalendarContract.AttendeesColumns.ATTENDEE_NAME
- CalendarContract.AttendeesColumns.ATTENDEE_EMAIL
- CalendarContract.AttendeesColumns.ATTENDEE_RELATIONSHIP
- CalendarContract.AttendeesColumns.ATTENDEE_TYPE
- CalendarContract.AttendeesColumns.ATTENDEE_STATUS
- CalendarContract.AttendeesColumns.ATTENDEE_IDENTITY
- CalendarContract.AttendeesColumns.ATTENDEE_ID_NAMESPACE
Summary
| Inherited constants | 
|---|
| Fields | |
|---|---|
| 
    public
    static
    final
    Uri | CONTENT_URIThe content:// style URL for accessing Attendees data | 
| Public methods | |
|---|---|
| 
        
        
        static
        
        
        Cursor | 
      query(ContentResolver cr, long eventId, String[] projection)
      Queries all attendees associated with the given event. | 
| Inherited methods | |
|---|---|
Fields
CONTENT_URI
public static final Uri CONTENT_URI
The content:// style URL for accessing Attendees data
Public methods
query
public static Cursor query (ContentResolver cr, long eventId, String[] projection)
Queries all attendees associated with the given event. This is a blocking call and should not be done on the UI thread.
| Parameters | |
|---|---|
| cr | ContentResolver: The content resolver to use for the query | 
| eventId | long: The id of the event to retrieve attendees for | 
| projection | String: the columns to return in the cursor | 
| Returns | |
|---|---|
| Cursor | A Cursor containing all attendees for the event | 
