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

com.oneeyedmen.okeydoke.Formatter Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
package com.oneeyedmen.okeydoke;

/**
 * Formats things of type T to things of type C (for comparison).
 *
 * Note that as the format conversion is only applied one way, it does not have to
 * be reversible - so don't worry too much about escaping etc.
 *
 * @param  the type of the comparison.
 */
public interface Formatter {

    public C formatted(T object);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy