com.ajjpj.afoundation.function.AFunction4NoThrow Maven / Gradle / Ivy
The newest version!
package com.ajjpj.afoundation.function;
/**
* Represents a function that takes four arguments and produces a result. This function does not throw a checked exception.
*
* @param 1st parameter type
* @param 2nd parameter type
* @param 3rd parameter type
* @param 4th parameter type
* @param return type
*
* @author arno
*/
public interface AFunction4NoThrow extends AFunction4 {
R apply (P1 param1, P2 param2, P3 param3, P4 param4);
}