Notice
The English translation of this page has not been completed, you are welcome to contribute translations to us.
You can use the Chrome Translation Plugin to translate entire pages for reference.
- class
MethodRulesclass MethodRules internal constructor(private val rulesData: MethodRulesData) : BaseRules
Change Records
v1.0.0
first
Function Illustrate
Method
查找条件实现类。
- field
namevar name: String
Change Records
v1.0.0
first
Function Illustrate
设置
Method
名称。
- field
paramCountvar paramCount: Int
Change Records
v1.0.0
first
Function Illustrate
设置
Method
参数个数。
你可以不使用 param
指定参数类型而是仅使用此变量指定参数个数。
若参数个数小于零则忽略并使用 param
。
- field
returnTypevar returnType: Any?
Change Records
v1.0.0
first
Function Illustrate
设置
Method
返回值。
可不填写返回值。
- method
modifiersfun modifiers(conditions: ModifierConditions)
Change Records
v1.0.0
first
Function Illustrate
设置
Method
标识符筛选条件。
可不设置筛选条件。
- method
emptyParamfun emptyParam()
Change Records
v1.0.0
first
Function Illustrate
设置
Method
空参数、无参数。
- method
paramfun param(vararg paramType: Any)
Change Records
v1.0.0
first
Function Illustrate
设置
Method
参数。
如果同时使用了 paramCount
则 paramType
的数量必须与 paramCount
完全匹配。
如果 Method
中存在一些无意义又很长的类型,你可以使用 VagueType
来替代它。
Pay Attention
无参 Method 请使用 emptyParam 设置查找条件。
有参 Method 必须使用此方法设定参数或使用 paramCount 指定个数。
- method
paramfun param(conditions: ObjectsConditions)
Change Records
v1.0.0
first
Function Illustrate
设置
Method
参数条件。
Pay Attention
无参 Method 请使用 emptyParam 设置查找条件。
有参 Method 必须使用此方法设定参数或使用 paramCount 指定个数。
- method
namefun name(conditions: NameConditions)
Change Records
v1.0.0
first
Function Illustrate
设置
Method
名称条件。
- method
paramCountfun paramCount(numRange: IntRange)
Change Records
v1.0.0
first
Function Illustrate
设置
Method
参数个数范围。
你可以不使用 param
指定参数类型而是仅使用此方法指定参数个数范围。
- method
paramCountfun paramCount(conditions: CountConditions)
Change Records
v1.0.0
first
Function Illustrate
设置
Method
参数个数条件。
你可以不使用 param
指定参数类型而是仅使用此方法指定参数个数条件。
- method
returnTypefun returnType(conditions: ObjectConditions)
Change Records
v1.0.0
first
Function Illustrate
设置
Method
返回值条件。
可不填写返回值。