Interface AddressLookupCallback
-
- All Implemented Interfaces:
public interface AddressLookupCallbackImplement this callback to be able to use Address Lookup functionality.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonQueryChanged(String query)In this method you will receive the query as shopper types it. BooleanonLookupCompletion(LookupAddress lookupAddress)In this method you will receive a LookupAddress object that is incomplete. -
-
Method Detail
-
onQueryChanged
abstract Unit onQueryChanged(String query)
In this method you will receive the query as shopper types it.
This query is to be used to perform an address search operation.
- Parameters:
query- The search query.
-
onLookupCompletion
Boolean onLookupCompletion(LookupAddress lookupAddress)
In this method you will receive a LookupAddress object that is incomplete.
This callback should be used to retrieve the complete details of the given LookupAddress.
- Parameters:
lookupAddress- The address.
-
-
-
-