hygieia.transformer.Transformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
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 - 2025 Weber Informatics LLC | Privacy Policy