Try this (java reflection):
String field = En.AAA.name();
En.class.getField(field).getAnnotations();
It should get you the annotations from AAA.
EDIT:
As the author supposed:
en1.getClass().getField(((Enum)en1).name()).getAnnotations();
Works for him 🙂