Project

General

Profile

1 15160 katerina.i
package eu.dnetlib.data.search.transform;
2
3
public interface Transformer {
4
5 15397 katerina.i
	/**
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 47316 katerina.i
	String transform(String input) throws TransformerException;
12 15160 katerina.i
}