Interface PlaceIdSearchCallbackExtended
- Last UpdatedJun 10, 2025
- 1 minute read
Package com.here.sdk.search
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface PlaceIdSearchCallbackExtended
The method will be called on the main thread when a search by id call has been completed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onPlaceIdSearchExtendedCompleted(SearchError searchError, Place place, ResponseDetails responseDetails)
The method will be called on the main thread when a search by id call has been completed.
-
-
-
Method Detail
-
onPlaceIdSearchExtendedCompleted
void onPlaceIdSearchExtendedCompleted(@Nullable SearchError searchError, @Nullable Place place, @Nullable ResponseDetails responseDetails)
The method will be called on the main thread when a search by id call has been completed.
- Parameters:
searchError
-The search error
place
-The place
responseDetails
-The response details
-
-