Package org.linphone.core
Interface MagicSearch
public interface MagicSearch
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic enum
static enum
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addListener
(MagicSearchListener listener) getContactsList
(String filter, String domain, int sourceFlags, MagicSearch.Aggregation aggregation) Create a sorted list of SearchResult which match with a filter word, from
SipUri in this order : Contact's display name, address username, address domain
and phone number.void
getContactsListAsync
(String filter, String domain, int sourceFlags, MagicSearch.Aggregation aggregation) This is the asynchronous version of linphone_magic_search_get_contacts().Get the delimiter used for the search.boolean
Returns whether or not the search is limited or not.int
Get the maximum value used to calculate the weight in search.int
Get the minimum value used to calculate the weight in search.long
Gets the native pointer used by this class to make native method calls.int
Gets the number of maximum search result the search will return.boolean
Returns whether the delimiter is being used for the search.Gets the object stored in this object user's datavoid
removeListener
(MagicSearchListener listener) void
Reset the cache to begin a new search.void
setDelimiter
(String delimiter) Set the delimiter used to find matched filter word.void
setLimitedSearch
(boolean limited) Enables or disables the limited search.void
setMaxWeight
(int weight) Set the maximum value used to calculate the weight in search.void
setMinWeight
(int weight) Set the minimum value used to calculate the weight in search.void
setSearchLimit
(int limit) Sets the number of the maximum SearchResult which will be returned, if the
magic search isn't configured as unlimited withsetLimitedSearch(boolean)
.void
setUseDelimiter
(boolean enable) Enable or disable the delimiter in search.void
setUserData
(Object data) Sets the object to store in this object user's datatoString()
-
Method Details
-
getDelimiter
Get the delimiter used for the search.
- Returns:
- the delimiter used to find matched filter word
-
setDelimiter
Set the delimiter used to find matched filter word.
- Parameters:
delimiter
- delimiter (example "-_.,")
-
getLastSearch
- Returns:
- sorted list of
-
getLimitedSearch
boolean getLimitedSearch()Returns whether or not the search is limited or not.
If not limited, thegetSearchLimit()
won't be applied.- Returns:
- true if the search is limited, false otherwise
-
setLimitedSearch
void setLimitedSearch(boolean limited) Enables or disables the limited search.
Even if configured as unlimited, the LDAP maxResults configuration parameter
still applies.- Parameters:
limited
- true to limit the search, false otherwise
-
getMaxWeight
int getMaxWeight()Get the maximum value used to calculate the weight in search.
- Returns:
- the maximum value used to calculate the weight in search
-
setMaxWeight
void setMaxWeight(int weight) Set the maximum value used to calculate the weight in search.
- Parameters:
weight
- maximum weight
-
getMinWeight
int getMinWeight()Get the minimum value used to calculate the weight in search.
- Returns:
- the minimum value used to calculate the weight in search
-
setMinWeight
void setMinWeight(int weight) Set the minimum value used to calculate the weight in search.
- Parameters:
weight
- minimum weight
-
getSearchLimit
int getSearchLimit()Gets the number of maximum search result the search will return.
The returned value doesn't take into account the "limited search" mode, so make
sure to checkgetLimitedSearch()
result as well.- Returns:
- the number of the maximum
SearchResult
which will be returned
if magic search is in limited mode.
-
setSearchLimit
void setSearchLimit(int limit) Sets the number of the maximum SearchResult which will be returned, if the
magic search isn't configured as unlimited withsetLimitedSearch(boolean)
.
- Parameters:
limit
- the maximum number ofSearchResult
the search will return
if magic search is in limited mode.
-
getUseDelimiter
boolean getUseDelimiter()Returns whether the delimiter is being used for the search.
- Returns:
- if the delimiter search is used
-
setUseDelimiter
void setUseDelimiter(boolean enable) Enable or disable the delimiter in search.
- Parameters:
enable
- true to use the delimiter, false otherwise
-
getContactsList
@NonNull SearchResult[] getContactsList(@Nullable String filter, @Nullable String domain, int sourceFlags, MagicSearch.Aggregation aggregation) Create a sorted list of SearchResult which match with a filter word, from
SipUri in this order : Contact's display name, address username, address domain
and phone number.
The last item list will be an address formed with "filter" if a proxy config
exist and requested in sourceFlags During the first search, a cache is created
and used for the next search UseresetSearchCache()
to begin a new
search- Parameters:
filter
- word we searchdomain
- domain which we want to search onlysourceFlags
- Flags that specify where to search :MagicSearch.Source
aggregation
- aMagicSearch.Aggregation
mode to indicate how to merge results- Returns:
- sorted list of
-
getContactsListAsync
void getContactsListAsync(@Nullable String filter, @Nullable String domain, int sourceFlags, MagicSearch.Aggregation aggregation) This is the asynchronous version of linphone_magic_search_get_contacts().
Create a sorted list of SearchResult which match with a filter word, from
SipUri in this order : Contact's display name, address username, address domain
and phone number. The last item list will be an address formed with "filter" if
a proxy config exist and requested in sourceFlags During the first search, a
cache is created and used for the next search UseresetSearchCache()
to
begin a new search- Parameters:
filter
- word we searchdomain
- domain which we want to search onlysourceFlags
- Flags that specify where to search :MagicSearch.Source
aggregation
- aMagicSearch.Aggregation
mode to indicate how to merge results
-
resetSearchCache
void resetSearchCache()Reset the cache to begin a new search.
-
addListener
-
removeListener
-
setUserData
Sets the object to store in this object user's data- Parameters:
data
- the object to store
-
getUserData
Object getUserData()Gets the object stored in this object user's data- Returns:
- the object store if any, null otherwise
-
getNativePointer
long getNativePointer()Gets the native pointer used by this class to make native method calls.- Returns:
- the nativer pointer, as long
-
toString
String toString()
-