类 AbstractClassTestingTypeFilter
java.lang.Object
cn.taketoday.core.type.filter.AbstractClassTestingTypeFilter
- 所有已实现的接口:
TypeFilter
- 直接已知子类:
RegexPatternTypeFilter
Type filter that exposes a
ClassMetadata object
to subclasses, for class testing purposes.- 从以下版本开始:
- 4.0
- 作者:
- Rod Johnson, Costin Leau, Juergen Hoeller
- 另请参阅:
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明protected abstract booleanmatch(ClassMetadata metadata) Determine a match based on the given ClassMetadata object.final booleanmatch(MetadataReader metadataReader, MetadataReaderFactory factory) Determine whether this filter matches for the class described by the given metadata.
-
构造器详细资料
-
AbstractClassTestingTypeFilter
public AbstractClassTestingTypeFilter()
-
-
方法详细资料
-
match
public final boolean match(MetadataReader metadataReader, MetadataReaderFactory factory) throws IOException 从接口复制的说明:TypeFilterDetermine whether this filter matches for the class described by the given metadata.- 指定者:
match在接口中TypeFilter- 参数:
metadataReader- the metadata reader for the target classfactory- a factory for obtaining metadata readers for other classes (such as superclasses and interfaces)- 返回:
- whether this filter matches
- 抛出:
IOException- in case of I/O failure when reading metadata
-
match
Determine a match based on the given ClassMetadata object.- 参数:
metadata- the ClassMetadata object- 返回:
- whether this filter matches on the specified type
-