com.sta.mutils.ThrowingFunction Maven / Gradle / Ivy
package com.sta.mutils;
/**
* Name: ThrowingFunction
* Description: Funktionales Interface, um eine Function verwenden zu k?nnen, die eine Exception wirft.
* @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 ThrowingFunction
{
/**
* Applies this function to the given argument.
* @param t the function argument
* @throws E Exception
* @return the function result
*/
R apply(T t) throws E;
}