using Strings
Using strings matcher.
----------------使用字符串列表匹配器。
usingStrings(StringMatcherList().add(StringMatcher("string")))
Content copied to clipboard
Return
Parameters
using Strings
using string list matcher / 使用字符串列表匹配器
fun usingStrings(usingStrings: Collection<String>, matchType: StringMatchType = StringMatchType.Contains, ignoreCase: Boolean = false): ClassMatcher
Using strings matcher.
----------------使用字符串匹配器。
usingStrings(List.of("TAG", "Activity"), StringMatchType.Equals, false)
Content copied to clipboard
Return
Parameters
using Strings
using string list / 使用字符串列表
match Type
string match type / 字符串匹配类型
ignore Case
ignore case / 忽略大小写
Using strings matcher. default match type is contains, if you need to match exactly, please use usingStrings or addUsingString overloaded function for each string.
使用字符串匹配器。默认匹配关系为包含,如需为每个字符串设置匹配关系, 请使用 usingStrings 或者 addUsingString 重载函数。
usingStrings("TAG", "Activity")
Content copied to clipboard
Return
Parameters
using Strings
using string list / 使用字符串列表
See also
Using string list. Default match type is contains, if you need to match exactly, please use usingStrings or addUsingString overloaded function for each string.
使用字符串列表。默认匹配关系为包含,如需为每个字符串设置匹配关系, 请使用 usingStrings 或者 addUsingString 重载函数。