ContactsDataSourceElement

sealed class ContactsDataSourceElement : Parcelable

Represents contacts data source element, that can be either a ContactItem or a ContactGroup depending on the provided query. See ContactsDataSourceQuery.

Types

Link copied to clipboard
data class ContactGroup(val group: String, val count: Int) : ContactsDataSourceElement

Represents a contacts group, where group is the key, and count is the number of items with that group as the key.

Link copied to clipboard
data class ContactItem(val contact: Contact) : ContactsDataSourceElement

Represents a contact item.

Inherited functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Inheritors

Link copied to clipboard
Link copied to clipboard