ebul-func/src/main/java/info/ebenoit/ebul/func/ThrowingToIntFunction.java
Emmanuel BENOîT ec2c870f7b Initial import
Contains POM (probably incomplete) as well as all Throwing versions of
java.util.function interfaces + the Runnable interface.
2015-09-11 14:04:59 +02:00

53 lines
1.1 KiB
Java

package info.ebenoit.ebul.func;
import java.util.function.ToIntFunction;
/**
* This interface supports a {@link ToIntFunction} that can throw checked exceptions. Checked exceptions are transmitted
* using a {@link FunctionException} runtime exception.
*
* @author <a href="mailto:ebenoit@ebenoit.info">E. Benoît</a>
*/
@FunctionalInterface
public interface ThrowingToIntFunction< T >
extends ToIntFunction< T >
{
/**
* Applies this function to the given argument.
*
* @param t
* the argument
* @return the result
* @throws FunctionException
* if a checked exception occurs
*/
@Override
default int applyAsInt( final T t )
{
try {
return this.throwingApplyAsInt( t );
} catch ( final RuntimeException e ) {
throw e;
} catch ( final Throwable e ) {
throw new FunctionException( e );
}
}
/**
* Applies this function to the given argument.
*
* @param t
* the argument
* @return the result
* @throws Throwable
* any exception
*/
public int throwingApplyAsInt( T t )
throws Throwable;
}