com.sta.mutils.ThrowingTriConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xtools Show documentation
Show all versions of xtools Show documentation
Executable tools for all projects.
package com.sta.mutils;
/**
* Name: ThrowingTriConsumer
* Description: Funktionales Interface, um einen Consumer verwenden zu k?nnen, der eine Exception wirft.
* @param Klasse des zu verarbeitenden Objekts
* @param Klasse des zu verarbeitenden Objekts
* @param Klasse des zu verarbeitenden Objekts
* @param Klasse der Exception, die ggf. geworfen wird
*
* Comment: ...
*
* Copyright: Copyright (c) 2019-2021
* Company: >StA-Soft<
* @author StA
* @version 1.0
*/
@FunctionalInterface
public interface ThrowingTriConsumer
{
/**
* Object verarbeiten.
* @param t0 Objekt
* @param t1 Objekt
* @param t2 Objekt
* @throws E Exception
*/
void accept(T0 t0, T1 t1, T2 t2) throws E;
}