Added title to DataMinerAlgorithms

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/performfish-analytics-portlet@181280 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2019-07-22 10:30:28 +00:00
parent 7f6b6b858e
commit c70b8894cf
1 changed files with 23 additions and 10 deletions

View File

@ -9,31 +9,34 @@ package org.gcube.portlets.user.performfishanalytics.client;
* *
* @author Francesco Mangiacrapa at ISTI-CNR (francesco.mangiacrapa@isti.cnr.it) * @author Francesco Mangiacrapa at ISTI-CNR (francesco.mangiacrapa@isti.cnr.it)
* *
* Jul 12, 2019 * Jul 22, 2019
*/ */
public enum DataMinerAlgorithms { public enum DataMinerAlgorithms {
DEA_CHART("DEA_CHART", "DEA_CHART"), DEA_CHART("DEA_CHART", "DEA_CHART", "DEA_CHART"),
SCATTER("SCATTER", "SCATTER"), SCATTER("SCATTER", "SCATTER", "SCATTER"),
SPEEDOMETER("SPEEDOMETER","SPEEDOMETER"), SPEEDOMETER("SPEEDOMETER","SPEEDOMETER", "Performeter"),
BOXPLOT("BOXPLOT","BOXPLOT"), BOXPLOT("BOXPLOT","BOXPLOT","BOXPLOT"),
DEA_ANALYSIS("DEA_ANALYSIS", "DEA_ANALYSIS"), DEA_ANALYSIS("DEA_ANALYSIS", "DEA_ANALYSIS", "DEA_ANALYSIS"),
CORRELATION("CORRELATION", "CORRELATION"), CORRELATION("CORRELATION", "CORRELATION","CORRELATION"),
PERFORMFISH_SYNOPTICTABLE_BATCH("PERFORMFISH_SYNOPTICTABLE_BATCH", "PERFORMFISH_SYNOPTICTABLE_BATCH"), PERFORMFISH_SYNOPTICTABLE_BATCH("PERFORMFISH_SYNOPTICTABLE_BATCH", "PERFORMFISH_SYNOPTICTABLE_BATCH","PERFORMFISH_SYNOPTICTABLE_BATCH"),
PERFORMFISH_SYNOPTIC_TABLE_FARM("PERFORMFISH_SYNOPTIC_TABLE_FARM","PERFORMFISH_SYNOPTIC_TABLE_FARM"); PERFORMFISH_SYNOPTIC_TABLE_FARM("PERFORMFISH_SYNOPTIC_TABLE_FARM","PERFORMFISH_SYNOPTIC_TABLE_FARM","PERFORMFISH_SYNOPTIC_TABLE_FARM");
String id; String id;
String name; String name;
String title;
/** /**
* Instantiates a new data miner algorithms. * Instantiates a new data miner algorithms.
* *
* @param id the id * @param id the id
* @param name the name * @param name the name
* @param title the title
*/ */
DataMinerAlgorithms(String id, String name){ DataMinerAlgorithms(String id, String name, String title){
this.id = id; this.id = id;
this.name = name; this.name = name;
this.title = title;
} }
/** /**
@ -55,6 +58,16 @@ public enum DataMinerAlgorithms {
return name; return name;
} }
/**
* Gets the title.
*
* @return the title
*/
public String getTitle() {
return title;
}
} }