static <X extends Throwable> ThrowingDoubleUnaryOperator<X> |
ThrowingDoubleUnaryOperator.checked(DoubleUnaryOperator operator) |
Returns a unary operator that applies the operator operator to its input.
|
static <X extends Throwable> ThrowingDoubleUnaryOperator<X> |
ThrowingDoubleUnaryOperator.checked(DoubleUnaryOperator operator,
Class<X> errorType) |
Returns a unary operator that applies the operator operator to its input.
|
static <X extends Throwable> ThrowingDoubleUnaryOperator<X> |
ThrowingDoubleUnaryOperator.identity() |
Returns a unary operator that always returns its input argument.
|
static <X extends Throwable> ThrowingDoubleUnaryOperator<X> |
ThrowingDoubleUnaryOperator.of(ThrowingDoubleUnaryOperator<X> operator) |
Factory method for turning ThrowingDoubleUnaryOperator-shaped lambdas into ThrowingDoubleUnaryOperators.
|
default <E extends Throwable> ThrowingDoubleUnaryOperator<E> |
ThrowingDoubleUnaryOperator.onErrorApplyChecked(ThrowingDoubleUnaryOperator<? extends E> fallback) |
Returns a unary operator that applies this operator to its input.
|
default <E extends Throwable> ThrowingDoubleUnaryOperator<E> |
ThrowingDoubleUnaryOperator.onErrorGetChecked(ThrowingDoubleSupplier<? extends E> fallback) |
Returns a unary operator that applies this operator to its input.
|
default <E extends Throwable> ThrowingDoubleUnaryOperator<E> |
ThrowingDoubleUnaryOperator.onErrorHandleChecked(ThrowingToDoubleFunction<? super X,? extends E> errorHandler) |
Returns a unary operator that applies this operator to its input.
|
default <E extends Throwable> ThrowingDoubleUnaryOperator<E> |
ThrowingDoubleUnaryOperator.onErrorThrowAsChecked(Function<? super X,? extends E> errorMapper) |
Returns a unary operator that applies this operator to its input.
|