Interface AnnotationAccess

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      <T extends java.lang.annotation.Annotation>
      T
      getAnnotation​(java.lang.Class<T> annotationType)
      Returns an instantiated annotation, or null if the target does not have the indicated annotation.
      <T extends java.lang.annotation.Annotation>
      boolean
      hasAnnotation​(java.lang.Class<T> annotationType)
      Checks to see if the target has an annotation of the given type.
    • Method Detail

      • hasAnnotation

        <T extends java.lang.annotation.Annotation> boolean hasAnnotation​(java.lang.Class<T> annotationType)
        Checks to see if the target has an annotation of the given type.
      • getAnnotation

        <T extends java.lang.annotation.Annotation> T getAnnotation​(java.lang.Class<T> annotationType)
        Returns an instantiated annotation, or null if the target does not have the indicated annotation.