package org.gcube.portlets.user.reportgenerator.shared; public enum VMETypeIdentifier { Vme("Vme"), GeneralMeasure("GeneralMeasure"), InformationSource("InformationSource"), FisheryAreasHistory("FisheryAreasHistory"), VMEsHistory("VMEsHistory"), Rfmo("Rfmo"); private String _id; private VMETypeIdentifier(String id) { this._id = id; } /** * @return the 'id' value */ public String getId() { return this._id; } }