printAnnotationTypeDeclaration(mirror.getAnnotationType().getDeclaration());
for (AnnotationTypeElementDeclaration decl : mirror.getAnnotationType().getDeclaration().getMethods()) {
LOG.error("-------------------");
printAnnotationTypeElementDeclaration(decl);
if (elementValues.containsKey(decl)) {
AnnotationValue value = elementValues.get(decl);
LOG.error("Type Element value=" + value.getValue());
}
}
}