String Matchers Group
Properties
Link copied to clipboard
Link copied to clipboard
Using string list. Default match type is contains, if you need to match exactly, please use usingStrings or add overloaded function for each string.
Functions
Link copied to clipboard
fun add(usingString: String, matchType: StringMatchType = StringMatchType.Contains, ignoreCase: Boolean = false): StringMatchersGroup
Add string matcher.
----------------Link copied to clipboard
Query group name. Must be unique in a single call.
----------------Link copied to clipboard
Using strings matcher. default match type is contains, if you need to match exactly, please use usingStrings or add overloaded function for each string.
fun usingStrings(usingStrings: Collection<String>, matchType: StringMatchType = StringMatchType.Contains, ignoreCase: Boolean = false): StringMatchersGroup
Using strings matcher.
----------------