com.ajjpj.afoundation.function.AFunction1 Maven / Gradle / Ivy
The newest version!
package com.ajjpj.afoundation.function;
import java.io.Serializable;
import java.sql.SQLException;
/**
* Represents a function that takes a single argument and produces a result.
*
* @param parameter type
* @param return type
*
* @author arno
*/
public interface AFunction1 extends Serializable {
R apply(P param) throws E;
}