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

com.sta.mutils.ThrowingTriFunction Maven / Gradle / Ivy


package com.sta.mutils;

/**
 * 

Name: ThrowingTriFunction

*

Description: Funktionales Interface, um eine TriFunction verwenden zu k?nnen, die eine Exception wirft. * @param Klasse des zu verarbeitenden Objekts * @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 ThrowingTriFunction { /** * Applies this function to the given argument. * @param t0 the first function argument * @param t1 the second function argument * @param t2 the second function argument * @throws E Exception * @return the function result */ R apply(T0 t0, T1 t1, T2 t2) throws E; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy