Class Contact

java.lang.Object
com.here.sdk.search.Contact

public final class Contact extends Object

Represents contact information.

  • Field Details

    • landlinePhones

      @NonNull public List<LandlinePhone> landlinePhones

      The list of landline phone numbers with associated categories. This data is not available in offline search.

    • mobilePhones

      @NonNull public List<MobilePhone> mobilePhones

      The list of mobile phones numbers with associated categories. This data is not available in offline search.

    • emails

      @NonNull public List<EmailAddress> emails

      The list of email addresses with associated categories. This data is not available in offline search.

    • websites

      @NonNull public List<WebsiteAddress> websites

      The list of website addresses with associated categories. This data is not available in offline search.

  • Constructor Details

    • Contact

      public Contact()

      Creates a new instance.

    • Contact

      public Contact(@NonNull List<LandlinePhone> landlinePhones, @NonNull List<MobilePhone> mobilePhones, @NonNull List<EmailAddress> emails, @NonNull List<WebsiteAddress> websites)

      Creates a new instance.

      Parameters:
      landlinePhones -

      The list of landline phone numbers with associated categories. This data is not available in offline search.

      mobilePhones -

      The list of mobile phones numbers with associated categories. This data is not available in offline search.

      emails -

      The list of email addresses with associated categories. This data is not available in offline search.

      websites -

      The list of website addresses with associated categories. This data is not available in offline search.

  • Method Details