added toString to Record_Type enum

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-catalogue/grsf-publisher-ws@135278 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Costantino Perciante 2016-12-04 14:12:29 +00:00
parent cb11117297
commit 7baff1b51c
1 changed files with 6 additions and 0 deletions

View File

@ -19,4 +19,10 @@ public enum Record_Type {
public String getRecordType(){
return name;
}
@Override
public String toString() {
return this.name;
}
}