Uses of Interface
javax.lang.model.element.AnnotationMirror

Packages that use AnnotationMirror
javax.lang.model.element Interfaces used to model elements of the Java programming language. 
javax.lang.model.util Utilities to assist in the processing of program elements and types
 

Uses of AnnotationMirror in javax.lang.model.element
 

Methods in javax.lang.model.element that return types with arguments of type AnnotationMirror
 List<? extends AnnotationMirror> Element.getAnnotationMirrors()
          Returns the annotations that are directly present on this element.
 

Methods in javax.lang.model.element with parameters of type AnnotationMirror
 R AnnotationValueVisitor.visitAnnotation(AnnotationMirror a, P p)
          Visits an annotation value in an annotation.
 

Uses of AnnotationMirror in javax.lang.model.util
 

Methods in javax.lang.model.util that return types with arguments of type AnnotationMirror
 List<? extends AnnotationMirror> Elements.getAllAnnotationMirrors(Element e)
          Returns all annotations of an element, whether inherited or directly present.
 

Methods in javax.lang.model.util with parameters of type AnnotationMirror
 Map<? extends ExecutableElement,? extends AnnotationValue> Elements.getElementValuesWithDefaults(AnnotationMirror a)
          Returns the values of an annotation's elements, including defaults.
 R SimpleAnnotationValueVisitor6.visitAnnotation(AnnotationMirror a, P p)
          Visits an annotation value in an annotation.