com.sta.mutils.ThrowingConsumer 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:
* Description: Funktionales Interface, um einen Consumer verwenden zu k?nnen, der eine Exception wirft.
* @param Klasse des zu verarbeitenden Objekts
* @param Klasse der Exception, die ggf. geworfen wird
*
* Comment: ...
*
* Copyright: Copyright (c) 2019
* Company: >StA-Soft<
* @author StA
* @version 1.0
*/
@FunctionalInterface
public interface ThrowingConsumer
{
/**
* Object verarbeiten.
* @param t Objekt
* @throws E Exception
*/
void accept(T t) throws E;
}