类 SimpleReflectiveProcessor
java.lang.Object
cn.taketoday.aot.hint.annotation.SimpleReflectiveProcessor
- 所有已实现的接口:
ReflectiveProcessor
A simple
ReflectiveProcessor implementation that registers only a
reflection hint for the annotated type. Can be sub-classed to customize
processing for a given AnnotatedElement type.- 从以下版本开始:
- 4.0
- 作者:
- Stephane Nicoll
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明protected voidregisterConstructorHint(ReflectionHints hints, Constructor<?> constructor) RegisterReflectionHintsagainst the specifiedConstructor.protected voidregisterFieldHint(ReflectionHints hints, Field field) RegisterReflectionHintsagainst the specifiedField.protected voidregisterMethodHint(ReflectionHints hints, Method method) RegisterReflectionHintsagainst the specifiedMethod.voidregisterReflectionHints(ReflectionHints hints, AnnotatedElement element) RegisterReflectionHintsagainst the specifiedAnnotatedElement.protected voidregisterTypeHint(ReflectionHints hints, Class<?> type) RegisterReflectionHintsagainst the specifiedClass.
-
构造器详细资料
-
SimpleReflectiveProcessor
public SimpleReflectiveProcessor()
-
-
方法详细资料
-
registerReflectionHints
从接口复制的说明:ReflectiveProcessorRegisterReflectionHintsagainst the specifiedAnnotatedElement.- 指定者:
registerReflectionHints在接口中ReflectiveProcessor- 参数:
hints- the reflection hints instance to useelement- the element to process
-
registerTypeHint
RegisterReflectionHintsagainst the specifiedClass.- 参数:
hints- the reflection hints instance to usetype- the class to process
-
registerConstructorHint
RegisterReflectionHintsagainst the specifiedConstructor.- 参数:
hints- the reflection hints instance to useconstructor- the constructor to process
-
registerFieldHint
RegisterReflectionHintsagainst the specifiedField.- 参数:
hints- the reflection hints instance to usefield- the field to process
-
registerMethodHint
RegisterReflectionHintsagainst the specifiedMethod.- 参数:
hints- the reflection hints instance to usemethod- the method to process
-