type

The field type matcher.

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

字段类型匹配器。

type(ClassMatcher().className("java.lang.String"))

Return

FieldMatcher

Parameters

type

type matcher / 类型匹配器


fun type(clazz: Class<*>): FieldMatcher

The field type class matcher.

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

字段类型类匹配器。

Return

FieldMatcher

Parameters

clazz

type class / 类型类


fun type(typeName: String, matchType: StringMatchType = StringMatchType.Equals, ignoreCase: Boolean = false): FieldMatcher

The field type name matcher.

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

字段类型名称匹配器。

type("java.lang.String", StringMatchType.Equals, true)

Return

FieldMatcher

Parameters

typeName

type name / 类型名称

matchType

match type / 匹配关系

ignoreCase

ignore case / 忽略大小写


inline fun type(init: ClassMatcher.() -> Unit): FieldMatcher

See also


The field type fully qualified name.

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

字段类型的完全限定名。

type = "java.lang.String"