接口 IMemberScanner
-
- 所有已知实现类:
SharedMemberScanner
@Bean public interface IMemberScanner
类成员搜索器, 在BeanManager获取
-
-
方法概要
修饰符和类型 方法 说明 Collection<Field>
getAllField(Class c)
Collection<Method>
getAllMethod(Class c)
Collection<Field>
getFieldByAnnotation(Class c, Class<? extends Annotation> ann)
Collection<Method>
getMethodByAnnotation(Class c, Class<? extends Annotation> ann)
-
-
-
方法详细资料
-
getAllMethod
@Contract(pure=true) @NotNull Collection<Method> getAllMethod(@NotNull Class c)
-
getMethodByAnnotation
@Contract(pure=true) @NotNull Collection<Method> getMethodByAnnotation(@NotNull Class c, @NotNull Class<? extends Annotation> ann)
-
getAllField
@Contract(pure=true) @NotNull Collection<Field> getAllField(@NotNull Class c)
-
getFieldByAnnotation
@Contract(pure=true) @NotNull Collection<Field> getFieldByAnnotation(@NotNull Class c, @NotNull Class<? extends Annotation> ann)
-
-