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
compare_strings, the match must be at least of
strength NATIONAL for this query to return any
matches.
- EQUALS_PHONE_NUMBER -
check if a field matches with a value tested using
compare_strings, the match must be of strenth
EXACT for this query to return any matches.
- EQUALS_SHORT_PHONE_NUMBER -
check if a field matches with a value tested using
compare_strings, the match must be at least of
strength 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
REGEX_NORMAL as it implies that
VCard(s) must be parsed in order to get the raw data for comparison.