Rev 10 | Rev 49 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
/****/package in.shop2020.metamodel.definitions;/**** @author naveen**/public enum EditorialImportance {MANDATORY,RECOMMENDED,OPTIONAL;/*** @return String*/public String toString() {String text = "";if(this == EditorialImportance.MANDATORY) {text = "Mandatory";}else if(this == EditorialImportance.RECOMMENDED) {text = "Recommended";}else if(this == EditorialImportance.OPTIONAL) {text = "Optional";}return text;}}