Is there a way to declare an annotation attribute for *any* enum? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:37:39Z http://stackoverflow.com/feeds/question/1037531 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1037531/is-there-a-way-to-declare-an-annotation-attribute-for-any-enum 5 Is there a way to declare an annotation attribute for *any* enum? Roland Schneider 2009-06-24T10:23:10Z 2009-07-11T03:26:48Z <p>At the moment I am developing an annotation-based binding-framework for Java Swing that uses <a href="http://www.jgoodies.com" rel="nofollow">JGoodies Binding</a> under the hood. Unfortunately I am stuck with an annotation for a JRadioButton-binding. What I want to do is specify a property-name of a model which holds a special value (enum). The radio-button shall be selected if this property has a specific value. Now I want to specify the value in the annotation like this:</p> <pre><code>@RadioButtonBinding(selectedProperty = "selectedItem", selectedValue = MyEnum.FIRST) JRadioButton firstButton @RadioButtonBinding(selectedProperty = "selectedItem", selectedValue = MyEnum.FIRST) JRadioButton secondButton </code></pre> <p>However, I do not know how to declare the annotation to allow the above and <strong>any</strong> other enum, too. My first guess was this, but I learned that annotation attributes cannot be generic:</p> <pre><code>@Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) public @interface RadioButtonBinding { String selectedItem(); Class&lt;? extends Enum&lt;?&gt;&gt; enumClass(); String enumConstantName(); &lt;T extends Enum&lt;T&gt;&gt; T enumValue(); } </code></pre> <p>Any ideas how to solve this?</p> http://stackoverflow.com/questions/1037531/is-there-a-way-to-declare-an-annotation-attribute-for-any-enum/1044346#1044346 1 Answer by Jon Bright for Is there a way to declare an annotation attribute for *any* enum? Jon Bright 2009-06-25T14:43:30Z 2009-06-25T14:43:30Z <p>It's not going to work the way you want it to. As you've found out, you can only use really plain return types in annotations. Additionally, trying to get around these restrictions by doing stuff like abusing String isn't going to work because you need to be using a constant expression for initialising your annotation's values.</p> <p>I think the closest you're going to get is to initialise with a String and then use code to compare with the enum's name(). But there goes your type safety...</p> http://stackoverflow.com/questions/1037531/is-there-a-way-to-declare-an-annotation-attribute-for-any-enum/1056465#1056465 1 Answer by diega for Is there a way to declare an annotation attribute for *any* enum? diega 2009-06-29T03:36:42Z 2009-06-29T03:36:42Z <p>If your enums can implement all the same interface, you may find useful this question "<a href="http://stackoverflow.com/questions/574529/coding-tip-intersection-types-and-java-enums">Coding tip - intersection types and java enums</a>"</p> http://stackoverflow.com/questions/1037531/is-there-a-way-to-declare-an-annotation-attribute-for-any-enum/1112859#1112859 0 Answer by StaxMan for Is there a way to declare an annotation attribute for *any* enum? StaxMan 2009-07-11T03:26:48Z 2009-07-11T03:26:48Z <p>I was trying to solve this exact same problem, and as far as I know, it can not be done. It's a real bummer.</p> <p>In my case, I wanted to specify @Version annotation, where any enumeration can be used, and enum values can be compared by ordinal (to find ordering of versions). Looks like I need to do what some other frameworks (like Guice I think) do and use doubles instead; bit ugly, but works ok for >= and &lt;= checks.</p>