This repository has been archived on 2021-11-25. You can view files and clone it, but cannot push or open issues or pull requests.
vmereports-manager-portlet/src/main/java/org/gcube/portlets/user/reportgenerator/shared/VMETypeIdentifier.java

24 lines
448 B
Java

package org.gcube.portlets.user.reportgenerator.shared;
public enum VMETypeIdentifier {
Vme("GeneralMeasure"),
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;
}
}