import java.lang.annotation.Repeatable; @Repeatable(Foos.class) public @interface Foo { String value(); } @interface Foos { Foo[] value(); }