In the enum below I see three three distinct classes of messages that exist within the Message enum: Form, Site and Admin.
Is it possible to implement a type of namespace mechanism in an enum so that, instead of writing
Message.SITE_ERROR
Message.ADMIN_ERROR
you write, this:
Message.Site.ERROR
Message.Admin.ERROR
so that Site and Admin represent the "namespace" below which additional categories of messages can exist?
public enum Message {
//FORM
FORM_EMPTY("You've gotta put something in the form."),
//SITE
SITE_ERROR("Whoa. What happened?"),
SITE_ALERT("Hey, it's that time again.");
//ADMIN
ADMIN_ERROR("Gotta look into this, dude."),
ADMIN_ALERT("Time to get the lead out.");
private String messageString;
private Message(String messageString){
this.messageString=messageString;
}
@Override
public String toString() {
return messageString;
}
}
enumtypes, but have them implement a common interface. – MatrixFrog Aug 22 '11 at 17:20