1 package uk.ac.ebi.intenz.domain.constants; 2 3 4 /** 5 * Enumeration for web views of IntEnz data. 6 * Made to replace {@link EnzymeViewConstant}, perhaps moving to a webapp-only 7 * module? 8 * @author rafalcan 9 * 10 */ 11 public enum View { 12 13 INTENZ("IntEnz"), 14 IUBMB("NC-IUBMB"), 15 SIB("ENZYME"); 16 17 private String txt; 18 19 private View(String txt){ this.txt = txt; } 20 21 public String getLabel() { 22 return txt; 23 } 24 25 26 }