You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
342 B
Java

package org.gcube.portlets.admin.systemservicedefinition;
/**
*
* @author Giancarlo Panichi
*
*/
public enum OperationType {
TableInteraction;
public static OperationType getTypeFromString(String value){
for(OperationType a:values()){
if(a.name().compareToIgnoreCase(value)==0){
return a;
}
}
return null;
}
}