类 AnnotationTypeFilter

所有已实现的接口:
TypeFilter

public class AnnotationTypeFilter extends AbstractTypeHierarchyTraversingFilter
A simple TypeFilter which matches classes with a given annotation, checking inherited annotations as well.

By default, the matching logic mirrors that of AnnotationUtils.getAnnotation(java.lang.reflect.AnnotatedElement, Class), supporting annotations that are present or meta-present for a single level of meta-annotations. The search for meta-annotations my be disabled. Similarly, the search for annotations on interfaces may optionally be enabled. Consult the various constructors in this class for details.

从以下版本开始:
4.0
作者:
Mark Fisher, Ramnivas Laddad, Juergen Hoeller, Sam Brannen, TODAY
  • 构造器详细资料

    • AnnotationTypeFilter

      public AnnotationTypeFilter(Class<? extends Annotation> annotationType)
      Create a new AnnotationTypeFilter for the given annotation type.

      The filter will also match meta-annotations. To disable the meta-annotation matching, use the constructor that accepts a 'considerMetaAnnotations' argument.

      The filter will not match interfaces.

      参数:
      annotationType - the annotation type to match
    • AnnotationTypeFilter

      public AnnotationTypeFilter(Class<? extends Annotation> annotationType, boolean considerMetaAnnotations)
      Create a new AnnotationTypeFilter for the given annotation type.

      The filter will not match interfaces.

      参数:
      annotationType - the annotation type to match
      considerMetaAnnotations - whether to also match on meta-annotations
    • AnnotationTypeFilter

      public AnnotationTypeFilter(Class<? extends Annotation> annotationType, boolean considerMetaAnnotations, boolean considerInterfaces)
      Create a new AnnotationTypeFilter for the given annotation type.
      参数:
      annotationType - the annotation type to match
      considerMetaAnnotations - whether to also match on meta-annotations
      considerInterfaces - whether to also match interfaces
  • 方法详细资料