StringMatchersGroup

Constructors

Link copied to clipboard
constructor()
constructor(groupName: String, stringMatchers: Collection<StringMatcher>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
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
fun usingStrings(vararg usingStrings: String): StringMatchersGroup

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.

----------------