I have something like this:
public enum En {
@Anno1("This is AAA")
@Anno2(500)
AAA,
@Anno1("What is this?")
@Anno3(secret="AH239B0EC")
BBB,
@Anno2(9000)
CCC;
}
And somewhere I have variable (e.g. en1) of Object type, to whitch some En constant assigned. At the same time I know only that en1 of some enum type.
The question is: how to get annotations related to enumeration constant that holded in en1 variable?
Object en1 = ...; Annotation[] anns = magic(en1);? Then I'd ask whyen1is of typeObjectand notEn. Could you provide some sample code like that? – musiKk Aug 31 '11 at 8:17en1.getClass().getField(((Enum)en1).name()).getAnnotations();– Errandir Aug 31 '11 at 8:31en1of someenumtype” means thaten1is instance ofEnum. – Errandir Nov 2 '11 at 17:03