paramTypes

The method parameter types fully qualified name. If set to null, it means matching any parameter type. The list implies the number of parameters.

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

paramTypes(listOf(null, "java.lang.String"))

Return

MethodMatcher

Parameters

paramTypes

method parameter types / 方法参数类型


empty parameters overload.

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

无参数重载.

Return

MethodMatcher


fun paramTypes(vararg paramTypes: String?): MethodMatcher

The method parameter types fully qualified name. If set to null, it means matching any parameter type. The list implies the number of parameters.

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

paramTypes(null, "java.lang.String")

Return

MethodMatcher

Parameters

paramTypes

method parameter types / 方法参数类型


fun paramTypes(vararg paramTypes: Class<*>?): MethodMatcher

The method parameter types class matcher. If set to null, it means matching any parameter type. The list implies the number of parameters.

方法参数类型类匹配器。如果设置为 null 则表示匹配任意参数类型。列表隐含了参数数量。

paramTypes(listOf(null, String::class.java))

Return

MethodMatcher

Parameters

paramTypes

method parameter types / 方法参数类型


The method parameter types fully qualified name. If set to null, it means matching any parameter type. The list implies the number of parameters.

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

paramTypes = listOf(null, "java.lang.String")