@FunctionalInterface
public interface CheckedDoubleUnaryOperator
DoubleUnaryOperator that allows for checked exceptions.| Modifier and Type | Method | Description |
|---|---|---|
double |
applyAsDouble(double operand) |
Applies this operator to the given operand.
|
static java.util.function.DoubleUnaryOperator |
sneaky(CheckedDoubleUnaryOperator operator) |
|
static java.util.function.DoubleUnaryOperator |
unchecked(CheckedDoubleUnaryOperator operator) |
|
static java.util.function.DoubleUnaryOperator |
unchecked(CheckedDoubleUnaryOperator operator,
java.util.function.Consumer<java.lang.Throwable> handler) |
double applyAsDouble(double operand)
throws java.lang.Throwable
operand - the operandjava.lang.Throwablestatic java.util.function.DoubleUnaryOperator sneaky(CheckedDoubleUnaryOperator operator)
static java.util.function.DoubleUnaryOperator unchecked(CheckedDoubleUnaryOperator operator)
static java.util.function.DoubleUnaryOperator unchecked(CheckedDoubleUnaryOperator operator, java.util.function.Consumer<java.lang.Throwable> handler)
Copyright © 2018. All rights reserved.