@Document(name = "builtin:Person")
class Person : Thing


AppSearch document representing a Person entity modeled after Person.

The Person document includes commonly searchable properties such as name, organization, and notes, as well as contact information such as phone numbers, email addresses, etc, grouped by their label. The labeled contact information is present in a nested ContactPoint document.

Summary

Nested types

Holds type information for additional names for Person.

Builder class for Person.

Public functions

(Mutable)List<String!>

Returns a list of additional names for this Person.

(Mutable)List<String!>

Returns a list of affiliation for this Person.

(Mutable)List<ContactPoint!>

Returns a list of ContactPoint.

Uri?

Returns an external uri for this Person.

String?

Returns the family (or last) name for this Person.

String?

Returns the given (or first) name for this Person.

Uri?

Returns Uri of the profile image for this Person.

String?

Returns the middle name(s) for this Person.

(Mutable)List<String!>

Returns the notes about this Person.

(Mutable)List<String!>

Returns a list of relations for this Person, like "Father" or "Mother".

(Mutable)List<Person.AdditionalName!>

Returns a list of AdditionalName for this Person.

Boolean

Returns whether this Person is a machine rather than a human.

Boolean

Returns whether this Person is important to the user of this device with regards to how frequently they interact.

Inherited functions

From androidx.appsearch.builtintypes.Thing
(Mutable)List<String!>

Returns an unmodifiable list of aliases, if any, for this item.

Long

Returns the creation timestamp, in milliseconds since Unix epoch, of this item.

String?

Returns a description of this item.

Int

Returns the intrinsic score (or importance) of this item.

Long

Returns the time-to-live timestamp, in milliseconds since getCreationTimestampMillis, for this item.

String

Returns the unique identifier for this item.

String?

Returns the URL for an image of this item.

String?

Returns the name of this item.

String

Returns the namespace (or logical grouping) for this item.

(Mutable)List<PotentialAction!>

Returns the actions that can be taken on this object.

String?

Returns the deeplink URL of this item.

Public functions

getAdditionalNames

Added in 1.1.0-alpha04
fun getAdditionalNames(): (Mutable)List<String!>

Returns a list of additional names for this Person.

Additional names can include something like phonetic names, or nicknames.

Different from getTypedAdditionalNames, the return value doesn't include type information for the additional names.

getAffiliations

Added in 1.1.0-alpha04
fun getAffiliations(): (Mutable)List<String!>

Returns a list of affiliation for this Person. Like company, school, etc.

For a contact with the title "Software Engineer" in a department "Engineering" at a company "Cloud Company", this can include a flattened value of "Software Engineer, Engineering, Cloud Company".

getContactPoints

Added in 1.1.0-alpha04
fun getContactPoints(): (Mutable)List<ContactPoint!>

Returns a list of ContactPoint.

More information can be found in ContactPoint.

getExternalUri

Added in 1.1.0-alpha04
fun getExternalUri(): Uri?

Returns an external uri for this Person. Or null if no Uri is provided. A Uri can be any of the following:

For mailto: and tel: URI schemes, it is recommended that the path portion refers to a valid contact in the Contacts Provider.

getFamilyName

Added in 1.1.0-alpha04
fun getFamilyName(): String?

Returns the family (or last) name for this Person.

getGivenName

Added in 1.1.0-alpha04
fun getGivenName(): String?

Returns the given (or first) name for this Person.

getImageUri

Added in 1.1.0-alpha04
fun getImageUri(): Uri?

Returns Uri of the profile image for this Person.

getMiddleName

Added in 1.1.0-alpha04
fun getMiddleName(): String?

Returns the middle name(s) for this Person.

For a Person with multiple middle names, this method returns a flattened and whitespace separated list. For example, "middle1 middle2 ..."

getNotes

Added in 1.1.0-alpha04
fun getNotes(): (Mutable)List<String!>

Returns the notes about this Person.

getRelations

Added in 1.1.0-alpha04
fun getRelations(): (Mutable)List<String!>

Returns a list of relations for this Person, like "Father" or "Mother".

getTypedAdditionalNames

Added in 1.1.0-alpha04
fun getTypedAdditionalNames(): (Mutable)List<Person.AdditionalName!>

Returns a list of AdditionalName for this Person.

Additional names can include something like phonetic names, or nicknames.

Each AdditionalName contains type information for the additional name.

isBot

Added in 1.1.0-alpha04
fun isBot(): Boolean

Returns whether this Person is a machine rather than a human.

isImportant

Added in 1.1.0-alpha04
fun isImportant(): Boolean

Returns whether this Person is important to the user of this device with regards to how frequently they interact.