modifiers

Method modifiers matcher.

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

方法修饰符匹配器。

modifiers(AccessFlagsMatcher().modifiers(Modifier.PUBLIC or Modifier.STATIC))

Return

MethodMatcher

Parameters

modifiers

method modifiers matcher / 方法修饰符匹配器


fun modifiers(modifiers: Int, matchType: MatchType = MatchType.Contains): MethodMatcher

Method modifiers. Match using java.lang.reflect.Modifier mask bits.

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

方法修饰符。使用 java.lang.reflect.Modifier mask bits 进行匹配。

modifiers(Modifier.PUBLIC or Modifier.STATIC)

Return

MethodMatcher

Parameters

modifiers

method modifiers / 方法修饰符


Method modifiers. Match using java.lang.reflect.Modifier mask bits, default match type is contains, if you need to match exactly, please use modifiers overloaded function.

方法修饰符。使用 java.lang.reflect.Modifier mask bits 进行匹配, 默认匹配关系为包含,如果需要完全限定匹配请使用 modifiers 重载函数。

modifiers = Modifier.PUBLIC or Modifier.STATIC