BookQueryTest
Description:
[ CCode ( cprefix = "E_BOOK_QUERY_" , has_type_id = false ) ]
public enum BookQueryTest
Content:
Enum values:
- BEGINS_WITH - check if a field starts
with the test value
- CONTAINS - check if a field contains the
test value
- ENDS_WITH - check if a field ends with
the test value
- EQUALS_NATIONAL_PHONE_NUMBER -
check if a field matches with a value tested using
phone_number_compare_strings, the match must be at least of strength
e_phone_number_match_national for this query to return any matches.
- EQUALS_PHONE_NUMBER - check if
a field matches with a value tested using phone_number_compare_strings,
the match must be of strenth e_phone_number_match_exact for this query to return any matches.
- EQUALS_SHORT_PHONE_NUMBER -
check if a field matches with a value tested using
phone_number_compare_strings, the match must be at least of strength
e_phone_number_match_short for this query to return any matches.
- IS - look for exact match of the supplied test
value
- LAST - End marker for the
BookQueryTest enumeration, not a valid query test.
- REGEX_NORMAL - A regular expression
query against contact data normalized with util_utf8_normalize
, the normalized data is lower case with any accents removed.
- REGEX_RAW - A regular expression query
against raw contact data, this is usually slower than a e_book_query_regex_normal as it implies that
VCard(s) must be parsed in order to get the raw data for comparison.