net.sf.javagimmicks.transform.Transforming Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gimmicks Show documentation
Show all versions of gimmicks Show documentation
Utility classes, APIs and tools for Java
package net.sf.javagimmicks.transform;
import net.sf.javagimmicks.util.Function;
/**
* An interface for objects that carry a {@link Function} for internally
* transforming objects.
*
* @param
* the source object type of the contained {@link Function}
* @param
* the target object type of the contained {@link Function}
*/
public interface Transforming
{
/**
* Returns the internal {@link Function}
*
* @return the internal {@link Function}
*/
public Function getTransformerFunction();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy