@FunctionalInterface public interface CheckedDoubleToLongFunction
DoubleToLongFunction that allows for checked exceptions.| Modifier and Type | Method and Description |
|---|---|
long |
applyAsLong(double value)
Applies this function to the given argument.
|
static java.util.function.DoubleToLongFunction |
unchecked(CheckedDoubleToLongFunction function) |
static java.util.function.DoubleToLongFunction |
unchecked(CheckedDoubleToLongFunction function,
java.util.function.Consumer<Throwable> handler) |
long applyAsLong(double value)
throws Throwable
value - the function argumentThrowablestatic java.util.function.DoubleToLongFunction unchecked(CheckedDoubleToLongFunction function)
Unchecked#doubleToLongFunction(CheckedDoubleToLongFunction)}static java.util.function.DoubleToLongFunction unchecked(CheckedDoubleToLongFunction function, java.util.function.Consumer<Throwable> handler)
Unchecked#doubleToLongFunction(CheckedDoubleToLongFunction, Consumer)}Copyright © 2016. All Rights Reserved.