All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hygieia.transformer.Transformer Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
package hygieia.transformer;

/**
 * Transforms something into something else.
 */
public interface Transformer {
    /**
     * Transforms a source S into an output O
     *
     * @param source source
     * @return output
     */
    O transformer(S source);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy