1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
public class SimpleEnum { } enum Foo { } class Bar { } interface I { } aspect X { before(): within(is(EnumType)) && staticinitialization(*) {} }