master #59

Closed
claudio.atzori wants to merge 3221 commits from master into stable_ids
1 changed files with 14 additions and 0 deletions
Showing only changes of commit 44db258dc4 - Show all commits

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;
}
}
}