Class WebsiteAddress
Package com.here.sdk.search
Class WebsiteAddress
- java.lang.Object
-
- com.here.sdk.search.WebsiteAddress
-
public final class WebsiteAddress extends java.lang.ObjectRepresents data related to specific website address
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.StringaddressThe website address.java.util.List<PlaceCategory>categoriesCategories associated with website address.
-
Constructor Summary
Constructors Constructor Description WebsiteAddress(java.lang.String address, java.util.List<PlaceCategory> categories)Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()
-
-
-
Field Detail
-
address
@NonNull public java.lang.String address
The website address.
-
categories
@NonNull public java.util.List<PlaceCategory> categories
Categories associated with website address. Note: In case
categoriesare not empty, thenaddressshould be used according to given categories. Otherwise,addressis meant for general use.
-
-
Constructor Detail
-
WebsiteAddress
public WebsiteAddress(@NonNull java.lang.String address, @NonNull java.util.List<PlaceCategory> categories)Creates a new instance.
- Parameters:
address-The website address.
categories-Categories associated with website address. Note: In case
categoriesare not empty, thenaddressshould be used according to given categories. Otherwise,addressis meant for general use.
-
-