Interface IntToDoubleFunctionWithException<E extends Exception>
-
- Type Parameters:
E
- the type of the potential exception of the function
- All Superinterfaces:
ExceptionHandlerSupport<IntToDoubleFunction,IntToDoubleFunction,IntToDoubleFunctionWithException<E>>
,PrimitiveReturnExceptionHandlerSupport<IntToDoubleFunction,IntToDoubleFunctionWithException<E>>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface IntToDoubleFunctionWithException<E extends Exception> extends PrimitiveReturnExceptionHandlerSupport<IntToDoubleFunction,IntToDoubleFunctionWithException<E>>
Represents a function that accepts an int-valued argument, may throw an exception and produces a double-valued result. This is theint
-to-double
primitive specialization forFunctionWithException
.General contract
double applyAsDouble(int value) throws E
- The functional method.- uncheck - Return a
IntToDoubleFunction
- lift - Return a
IntToDoubleFunction
- ignore - Return a
IntToDoubleFunction
- See Also:
IntToDoubleFunction
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description double
applyAsDouble(int value)
Applies this function to the given argument.default double
defaultValue()
Defines the default value returned by the ignore and ignored method.static <E extends Exception>
IntToDoubleFunctionWithException<E>failing(Supplier<E> exceptionBuilder)
Returns a function that always throw exception.static <E extends Exception>
IntToDoubleFunctionignored(IntToDoubleFunctionWithException<E> function)
Converts aIntToDoubleFunctionWithException
to a liftedIntToDoubleFunction
returning0
in case of exception.static <E extends Exception>
IntToDoubleFunctionignored(IntToDoubleFunctionWithException<E> function, double defaultValue)
Converts aIntToDoubleFunctionWithException
to a liftedIntToDoubleFunction
returning a default value in case of exception.static <E extends Exception>
IntToDoubleFunctionlifted(IntToDoubleFunctionWithException<E> function)
Converts aIntToDoubleFunctionWithException
to a liftedIntToDoubleFunction
returning0
in case of exception.static <E extends Exception>
IntToDoubleFunctionunchecked(IntToDoubleFunctionWithException<E> function)
Converts aIntToDoubleFunctionWithException
to aIntToDoubleFunction
that wraps exception toRuntimeException
.static <E extends Exception>
IntToDoubleFunctionunchecked(IntToDoubleFunctionWithException<E> function, Function<Exception,RuntimeException> exceptionMapper)
Converts aIntToDoubleFunctionWithException
to aIntToDoubleFunction
that wraps exception toRuntimeException
by using the provided mapping function.default IntToDoubleFunction
uncheckOrIgnore(boolean uncheck)
Used internally to implements the ignore or uncheck operation.-
Methods inherited from interface ch.powerunit.extensions.exceptions.ExceptionHandlerSupport
documented, exceptionMapper
-
Methods inherited from interface ch.powerunit.extensions.exceptions.PrimitiveReturnExceptionHandlerSupport
ignore, lift, uncheck
-
-
-
-
Method Detail
-
applyAsDouble
double applyAsDouble(int value) throws E extends Exception
Applies this function to the given argument.- Parameters:
value
- the function argument- Returns:
- the function result
- Throws:
E
- any exceptionE extends Exception
- See Also:
IntToDoubleFunction.applyAsDouble(int)
-
uncheckOrIgnore
default IntToDoubleFunction uncheckOrIgnore(boolean uncheck)
Description copied from interface:PrimitiveReturnExceptionHandlerSupport
Used internally to implements the ignore or uncheck operation.- Specified by:
uncheckOrIgnore
in interfacePrimitiveReturnExceptionHandlerSupport<IntToDoubleFunction,IntToDoubleFunctionWithException<E extends Exception>>
- Parameters:
uncheck
- create unchecked version of the function when true, else ignored version.- Returns:
- the function
-
failing
static <E extends Exception> IntToDoubleFunctionWithException<E> failing(Supplier<E> exceptionBuilder)
Returns a function that always throw exception.- Type Parameters:
E
- the type of the exception- Parameters:
exceptionBuilder
- the supplier to create the exception- Returns:
- a function that always throw exception
-
unchecked
static <E extends Exception> IntToDoubleFunction unchecked(IntToDoubleFunctionWithException<E> function)
Converts aIntToDoubleFunctionWithException
to aIntToDoubleFunction
that wraps exception toRuntimeException
.- Type Parameters:
E
- the type of the potential exception- Parameters:
function
- to be unchecked- Returns:
- the unchecked exception
- Throws:
NullPointerException
- if function is null- See Also:
PrimitiveReturnExceptionHandlerSupport.uncheck()
,unchecked(IntToDoubleFunctionWithException, Function)
-
unchecked
static <E extends Exception> IntToDoubleFunction unchecked(IntToDoubleFunctionWithException<E> function, Function<Exception,RuntimeException> exceptionMapper)
Converts aIntToDoubleFunctionWithException
to aIntToDoubleFunction
that wraps exception toRuntimeException
by using the provided mapping function.- Type Parameters:
E
- the type of the potential exception- Parameters:
function
- the be uncheckedexceptionMapper
- a function to convert the exception to the runtime exception.- Returns:
- the unchecked function
- Throws:
NullPointerException
- if function or exceptionMapper is null- See Also:
PrimitiveReturnExceptionHandlerSupport.uncheck()
,unchecked(IntToDoubleFunctionWithException)
-
lifted
static <E extends Exception> IntToDoubleFunction lifted(IntToDoubleFunctionWithException<E> function)
Converts aIntToDoubleFunctionWithException
to a liftedIntToDoubleFunction
returning0
in case of exception.- Type Parameters:
E
- the type of the potential exception- Parameters:
function
- to be lifted- Returns:
- the lifted function
- Throws:
NullPointerException
- if function is null- See Also:
PrimitiveReturnExceptionHandlerSupport.lift()
-
ignored
static <E extends Exception> IntToDoubleFunction ignored(IntToDoubleFunctionWithException<E> function)
Converts aIntToDoubleFunctionWithException
to a liftedIntToDoubleFunction
returning0
in case of exception.- Type Parameters:
E
- the type of the potential exception- Parameters:
function
- to be lifted- Returns:
- the lifted function
- Throws:
NullPointerException
- if function is null- See Also:
PrimitiveReturnExceptionHandlerSupport.ignore()
-
ignored
static <E extends Exception> IntToDoubleFunction ignored(IntToDoubleFunctionWithException<E> function, double defaultValue)
Converts aIntToDoubleFunctionWithException
to a liftedIntToDoubleFunction
returning a default value in case of exception.- Type Parameters:
E
- the type of the potential exception- Parameters:
function
- to be lifteddefaultValue
- value in case of exception- Returns:
- the lifted function
- Throws:
NullPointerException
- if function is null- Since:
- 3.0.0
- See Also:
PrimitiveReturnExceptionHandlerSupport.ignore()
,ignored(IntToDoubleFunctionWithException)
-
defaultValue
default double defaultValue()
Defines the default value returned by the ignore and ignored method.- Returns:
- the default value for the ignore/ignored method.
- Since:
- 3.0.0
-
-