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

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; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy