Class ResolverUtil.AnnotatedWith

  • All Implemented Interfaces:
    ResolverUtil.Test
    Enclosing class:
    ResolverUtil<T>

    public static class ResolverUtil.AnnotatedWith
    extends java.lang.Object
    implements ResolverUtil.Test
    A Test that checks to see if each class is annotated with a specific annotation. If it is, then the test returns true, otherwise false.
    • Constructor Summary

      Constructors 
      Constructor Description
      AnnotatedWith​(java.lang.Class<? extends java.lang.annotation.Annotation> annotation)
      Constructs an AnnotatedWith test for the specified annotation type.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean matches​(java.lang.Class<?> type)
      Returns true if the type is annotated with the class provided to the constructor.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • AnnotatedWith

        public AnnotatedWith​(java.lang.Class<? extends java.lang.annotation.Annotation> annotation)
        Constructs an AnnotatedWith test for the specified annotation type.
    • Method Detail

      • matches

        public boolean matches​(java.lang.Class<?> type)
        Returns true if the type is annotated with the class provided to the constructor.
        Specified by:
        matches in interface ResolverUtil.Test
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object