methodCount

Class method count, contains constructor (method name: <init>) and static block (method name: <clinit>).

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

类方法数量,包含构造函数(方法名:)以及静态代码块(方法名: <clinit>)。

Return

ClassMatcher

Parameters

count

method count / 方法数量


Class method count range, contains constructor (method name: <init>) and static block (method name: <clinit>).

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

类方法数量范围,包含构造函数(方法名:)以及静态代码块(方法名: <clinit>)。

methodCount(IntRange(1, 2))

Return

ClassMatcher

Parameters

range

method count range / 方法数量范围


Class method count range, contains constructor (method name: <init>) and static block (method name: <clinit>).

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

类方法数量范围,包含构造函数(方法名:)以及静态代码块(方法名: <clinit>)。

methodCount(1..2)

Return

ClassMatcher

Parameters

range

method count range / 方法数量范围


fun methodCount(min: Int = 0, max: Int = Int.MAX_VALUE): ClassMatcher

Class method count range, contains constructor (method name: <init>) and static block (method name: <clinit>).

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

类方法数量范围,包含构造函数(方法名:)以及静态代码块(方法名: <clinit>)。

methodCount(1, 2)

Return

ClassMatcher

Parameters

min

min method count / 最小方法数量

max

max method count / 最大方法数量