addParamType

fun addParamType(paramType: String?, matchType: StringMatchType = StringMatchType.Equals, ignoreCase: Boolean = false): MethodMatcher

Add method parameter type fully qualified name. If set to null, it means matching any parameter type.

方法参数类型全限定名。如果设置为 null 则表示匹配任意参数类型。

addParamType("java.lang.String")

Return

MethodMatcher

Parameters

paramType

method parameter type / 方法参数类型

matchType

class name match type / 类名字符串匹配类型

ignoreCase

ignore case / 是否忽略大小写


fun addParamType(paramType: Class<*>?): MethodMatcher

Add method parameter type class matcher.

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

添加方法参数类型类匹配器。

addParamType(String::class.java)

Return

MethodMatcher

Parameters

paramType

param type / 参数类型


Add method parameter type class matcher.

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

添加方法参数类型类匹配器。

Return

MethodMatcher

Parameters

type

method parameter type class matcher / 方法参数类型类匹配器


inline fun addParamType(init: ClassMatcher.() -> Unit): MethodMatcher