VM errors ought to be rethrown without being wrapped inside a FunctionException.
53 lines
1.2 KiB
Java
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;
|
|
|
|
}
|