add

fun add(interfaceMatcher: ClassMatcher): InterfacesMatcher

Add interface class matcher to match.

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

添加要匹配的接口类匹配器

Return

InterfacesMatcher

Parameters

interfaceMatcher

interface class matcher / 接口类匹配器


fun add(className: String, matchType: StringMatchType = StringMatchType.Equals, ignoreCase: Boolean = false): InterfacesMatcher

Add interface class name to match.

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

添加要匹配的接口类名

Return

InterfacesMatcher

Parameters

className

interface class name / 接口类名

matchType

match type / 匹配类型

ignoreCase

ignore case / 忽略大小写


inline fun add(init: ClassMatcher.() -> Unit): InterfacesMatcher

See also