com.link_intersystems.util.Transformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lis-commons-util Show documentation
Show all versions of lis-commons-util Show documentation
Link Intersystems Commons Util (lis-commons-util) is collection of reusable software components
that extend the standard java.util components.
package com.link_intersystems.util;
/**
* @author René Link {@literal }
*/
@FunctionalInterface
public interface Transformer {
public T transform(S source);
}