added enumerated for the dump type

This commit is contained in:
Miriam Baglioni 2020-11-24 14:38:06 +01:00
parent 1832708c42
commit 44db258dc4
1 changed files with 14 additions and 0 deletions

View File

@ -40,4 +40,18 @@ public class Constants {
coarCodeLabelMap.put("c_14cb", "CLOSED");
coarCodeLabelMap.put("c_f1cf", "EMBARGO");
}
public enum DUMPTYPE {
COMPLETE("complete"), COMMUNITY("community"), FUNDER("funder");
private String type;
DUMPTYPE(String type) {
this.type = type;
}
public String getType() {
return type;
}
}
}