Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-dev] Enums and AspectJ - getEnumConstants() returns null

Using AspectJ with enums I get the next results:

public enum EnumName { B, L, A }

EnumName.class.isEnum() : true
EnumName.class.getEnumConstants() : null

If I don't wave (at compile time) my project, getEnumConstants() works as expected.


Back to the top