Class Autocomplete.Address

Object
org.mozilla.geckoview.Autocomplete.Address
Enclosing class:
Autocomplete

public static class Autocomplete.Address extends Object
Holds address information for a specific entry.
  • Field Details

    • guid

      @Nullable public final String guid
      The unique identifier for this address entry.
    • name

      @NonNull public final String name
      The full name.
    • givenName

      @NonNull public final String givenName
      The given (first) name.
    • additionalName

      @NonNull public final String additionalName
      An additional name, if available.
    • familyName

      @NonNull public final String familyName
      The family name.
    • organization

      @NonNull public final String organization
      The name of the company, if applicable.
    • streetAddress

      @NonNull public final String streetAddress
      The (multiline) street address.
    • addressLevel1

      @NonNull public final String addressLevel1
      The level 1 (province) address. Note: Only use if streetAddress is not provided.
    • addressLevel2

      @NonNull public final String addressLevel2
      The level 2 (city/town) address. Note: Only use if streetAddress is not provided.
    • addressLevel3

      @NonNull public final String addressLevel3
      The level 3 (suburb/sublocality) address. Note: Only use if streetAddress is not provided.
    • postalCode

      @NonNull public final String postalCode
      The postal code.
    • country

      @NonNull public final String country
      The country string in ISO 3166.
    • tel

      @NonNull public final String tel
      The telephone number string.
    • email

      @NonNull public final String email
      The email address.
  • Constructor Details

    • Address

      @AnyThread protected Address()
  • Method Details