ebul-func/src/main/java/info/ebenoit/ebul/func/ThrowingIntPredicate.java
Emmanuel BENOîT 34b97af161 Throwing functions let VM errors pass through
VM errors ought to be rethrown without being wrapped inside a
FunctionException.
2015-09-17 09:42:23 +02:00

53 lines
1.2 KiB
Java

package info.ebenoit.ebul.func;
import java.util.function.IntPredicate;
/**
* This interface supports a {@link IntPredicate} 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 ThrowingIntPredicate
extends IntPredicate
{
/**
* Evaluates this predicate on the given argument.
*
* @param t
* the argument
* @return <code>true</code> if the input argument matches the predicate, otherwise <code>false</code>
* @throws FunctionException
* if a checked exception occurs
*/
@Override
default boolean test( final int t )
{
try {
return this.throwingTest( t );
} catch ( final Error | RuntimeException e ) {
throw e;
} catch ( final Throwable e ) {
throw new FunctionException( e );
}
}
/**
* Evaluates this predicate on the given argument.
*
* @param t
* the argument
* @return <code>true</code> if the input argument matches the predicate, otherwise <code>false</code>
* @throws Throwable
* any exception
*/
public boolean throwingTest( int t )
throws Throwable;
}