Project

General

Profile

1
package eu.dnetlib.data.search.transform;
2

    
3
public interface Transformer {
4

    
5
	/**
6
	 * Apply transformation in the input string.
7
	 * 
8
	 * @param input The string to be transformed
9
	 * @return The string after the transformation 
10
	 */
11
	String transform(String input) throws TransformerException;
12
}
(4-4/7)