Can I use a marker annotation on an enum when designing a generic interface?
Or, is it possible to type check annotation references at compile time?
I am developing a set of interfaces to process messages, each message will consist of a message type and the message content. I'd like to code the message types as enums and then define the other interfaces based on this. Something like this,
public interface MessageHandler<E extends Enum<E>> {
boolean handles( E messageType );
}
I don't want any enum to be used here, I can add a Marker Interface MessageType like so,
public interface MessageHandler<E extends Enum<E> & MessageType> {
boolean handles( E messageType );
}
I understand that Marker Annotations are preferable to Marker Interfaces these days, but I see no way to use them here. Is it possible or do I just stick with the interface?
MessageTypeto be anenumprovides very little additional advantage, while making the interface much harder to read. It's easier to let go of that requirement, yet still use onlyenumobjects for theMessageType. – Joachim Sauer Feb 10 '11 at 13:41Strings, I usedenumso each group of messages has a strictly bound list of types as reflected in the enum class. There is some usage of theEnumclass to convert the input Strings to the required enum but, other than that, there's probably no requirement for it to be an enum. – Dan Midwood Feb 10 '11 at 16:43