it表示当前规则的应用对象(少数规则没有应用对象)it.method()✅,不提供属性it.property❎| 方法 | 返回值 | 描述 | 示例 |
|---|---|---|---|
| name() | string | 名称 | it.name() |
| hasAnn("annotation_name") | boolean | 是否有指定注解 | it.hasAnn("org.springframework.web.bind.annotation.RequestBody") |
| ann("annotation_name") | string | 获取指定注解值(默认value) | it.ann("org.springframework.web.bind.annotation.RequestBody") |
| ann("annotation_name","attr") | string | 获取指定注解中的指定参数值 | it.ann("org.springframework.web.bind.annotation.RequestMapping","path") |
| annMap("annotation_name") | map | 获取指定注解所有的参数 | it.annMap("org.springframework.web.bind.annotation.RequestMapping") |
| annMaps("annotation_name") | map[] | 获取指定可重复注解所有的参数 | it.annMaps("javax.validation.constraints.Max") |
| annValue("annotation_name") | object | 获取指定注解值(默认value),与ann不同,会保持原有类型,不强制转换为string | it.annValue("org.springframework.web.bind.annotation.RequestBody") |
| annValue("annotation_name","attr") | object | 获取指定注解中的指定参数值,与ann不同,会保持原有类型,不强制转换为string | it.annValue("org.springframework.web.bind.annotation.RequestMapping","path") |
| doc() | string | 获取注释值 | it.doc() |
| doc("tag") | string | 获取注释tag值(不需要加@) | it.doc("return") |
| docs("tag") | array |
获取多个注释tag值(不需要加@) | it.docs("see") |
| doc("tag","subTag") | string | 获取二级注释tag值 | it.doc("param","a") |
| hasDoc("tag") | string | 是否有指定注释tag | it.hasDoc("ignore") |
| hasModifier("modifier") | string | 是否有指定修饰 | it.hasModifier("public") |
| modifiers() | string | 获取所有修饰 | it.modifiers() |
| sourceCode() | string | 获取当前对象源码 | it.sourceCode() |
| defineCode() | string | 获取当前对象纯定义代码 | it.defineCode() |
| contextType() | string | 当前上下文类型 class/field/method/param | it.contextType() |
| 方法 | 返回值 | 描述 | 示例 |
|---|---|---|---|
| methods() | method[] | 类中的所有方法 | it.methods() |
| methodCnt() | int | 类中的方法数 | it.methodCnt() |
| field() | field[] | 类中的所有字段 | it.field() |
| fieldCnt() | int | 类中的字段数 | it.fieldCnt() |
| isExtend(superClass) | boolean | 是否继承某个类 | it.isExtend("some.class.qualifiedName") |
| isMap() | boolean | 是否为Map | it.isMap() |
| isCollection() | boolean | 是否为集合 | it.isCollection() |
| isArray() | boolean | 是否为数组 | it.isArray() |
| toJson(readGetter) | string | 获取当前类型的json字符串 | it.toJson(true) |
| toJson5(readGetter) | string | 获取当前类型的json5字符串 | it.toJson5(true) |
| mavenId() | MavenId | 返回 Maven ID 信息 | it.mavenId() |
| 方法 | 返回值 | 描述 | 示例 |
|---|---|---|---|
| returnType() | class | 方法返回类型 | it.returnType() |
| isVarArgs() | boolean | 是否有不定参 | it.isVarArgs() |
| args() | param[] | 方法的所有参数 | it.args() |
| argTypes() | class[] | 方法的所有参数类型 | it.argTypes() |
| argCnt() | int | 方法参数个数 | it.argCnt() |
| containingClass() | class | 方法所属类 | it.containingClass() |
| returnJson(needInfer, readGetter) | class | 当前方法返回对象的json字符串 | it.returnJson(true,true) |
| 方法 | 返回值 | 描述 | 示例 |
|---|---|---|---|
| type() | class | 字段类型 | it.type() |
| containingClass() | class | 字段所属类 | it.containingClass() |
| jsonName() | string | 字段json名 | it.jsonName() |
| jsonType() | class | 字段json类型(被转换过的) | it.jsonType() |
| 方法 | 返回值 | 描述 | 示例 |
|---|---|---|---|
| type() | class | 参数类型 | it.type() |
| isVarArgs() | boolean | 是否为不定参 | it.isVarArgs() |
| 方法 | 返回值 | 描述 | 示例 |
|---|---|---|---|
| groupId | string | groupId | it.groupId() |
| artifactId | string | artifactId | it.artifactId() |
| version | string | version | it.version() |
| maven() | String | 生成 Maven 依赖代码片段 | it.maven() |
| gradle() | String | 生成 Gradle 实现依赖代码片段 | it.gradle() |
| gradleShort() | String | 生成 Gradle 实现依赖代码片段(简短格式) | it.gradleShort() |
| gradleKotlin() | String | 生成 Gradle Kotlin DSL 依赖代码片段 | it.gradleKotlin() |
| sbt() | String | 生成 SBT 依赖代码片段 | it.sbt() |
| ivy() | String | 生成 Ivy 依赖代码片段 | it.ivy() |