Minor Updated
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-widget-common-event@92268 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
7b98df694d
commit
c88e9855ad
|
@ -0,0 +1,23 @@
|
|||
package org.gcube.portlets.user.td.widgetcommonevent.shared.tr;
|
||||
|
||||
public enum TableType {
|
||||
GENERIC("Generic"),
|
||||
CODELIST("Codelist"),
|
||||
DATASET("Dataset");
|
||||
|
||||
|
||||
/**
|
||||
* @param text
|
||||
*/
|
||||
private TableType(final String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
private final String id;
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return id;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue