1. MatchMode.START:字符串在最前面的位置.相当于"like 'key%'"2. MatchMode.END:字符串在最后面的位置.相当于"like '%key'"3. MatchMode.ANYWHERE:字符串在中间匹配.相当于"like '%key%'"4. MatchMode.EXACT:字符串精确匹配.相当于"like 'key'"