Float functions - Throwing* variants

Added variants of the float primitive functions with support for checked
exception.
This commit is contained in:
Emmanuel BENOîT 2015-09-11 15:16:32 +02:00
parent ea2fc5a632
commit 52e685311a
15 changed files with 740 additions and 0 deletions
src/main/java/info/ebenoit/ebul/func

View file

@ -0,0 +1,45 @@
package info.ebenoit.ebul.func;
/**
* This interface supports a {@link FloatSupplier} 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 ThrowingFloatSupplier
extends FloatSupplier
{
/**
* Gets a result, or throws a {@link FunctionException} if an exception occurs.
*
* @return the result
* @throws FunctionException
* if any exception occurs during the function's execution
*/
@Override
default float getAsFloat( )
{
try {
return this.throwingGetAsFloat( );
} catch ( final RuntimeException e ) {
throw e;
} catch ( final Throwable e ) {
throw new FunctionException( e );
}
}
/**
* Gets a result or throws an exception
*
* @return the result
* @throws Throwable
* any exception
*/
public float throwingGetAsFloat( )
throws Throwable;
}