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

net.eusashead.parquet.util.Function Maven / Gradle / Ivy

The newest version!
package net.eusashead.parquet.util;

/**
 * Represents a function of
 * F that returns T.
 * @author patrickvk
 *
 * @param 
 * @param 
 */
public interface Function {
	
	/**
	 * Returns object of
	 * type T from parameter
	 * of type F
	 * @param f of type F
	 * @return object of type T
	 */
	T apply(F f);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy