com.sta.mutils.ThrowingBiFunction Maven / Gradle / Ivy
package com.sta.mutils;
/**
* Name: ThrowingBiFunction
* Description: Funktionales Interface, um eine BiFunction verwenden zu k?nnen, die eine Exception wirft.
* @param Klasse des zu verarbeitenden Objekts
* @param Klasse des zu verarbeitenden Objekts
* @param the type of the result of the function
* @param Klasse der Exception, die ggf. geworfen wird
*
* Comment: ...
*
* Copyright: Copyright (c) 2021
* Company: >StA-Soft<
* @author StA
* @version 1.0
*/
@FunctionalInterface
public interface ThrowingBiFunction
{
/**
* Applies this function to the given argument.
* @param t0 the first function argument
* @param t1 the second function argument
* @throws E Exception
* @return the function result
*/
R apply(T0 t0, T1 t1) throws E;
}