@FunctionalInterface public interface CheckedDoubleUnaryOperator
DoubleUnaryOperator that allows for checked exceptions.| Modifier and Type | Method and Description |
|---|---|
double |
applyAsDouble(double operand)
Applies this operator to the given operand.
|
static java.util.function.DoubleUnaryOperator |
unchecked(CheckedDoubleUnaryOperator operator) |
static java.util.function.DoubleUnaryOperator |
unchecked(CheckedDoubleUnaryOperator operator,
java.util.function.Consumer<Throwable> handler) |
double applyAsDouble(double operand)
throws Throwable
operand - the operandThrowablestatic java.util.function.DoubleUnaryOperator unchecked(CheckedDoubleUnaryOperator operator)
Unchecked#doubleUnaryOperator(CheckedDoubleUnaryOperator)}static java.util.function.DoubleUnaryOperator unchecked(CheckedDoubleUnaryOperator operator, java.util.function.Consumer<Throwable> handler)
Unchecked#doubleUnaryOperator(CheckedDoubleUnaryOperator, Consumer)}Copyright © 2016. All Rights Reserved.