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

com.capitalone.dashboard.collector.Transformer Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package com.capitalone.dashboard.collector;

/**
 * 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