@FunctionalInterface public interface CheckedDoubleConsumer
DoubleConsumer that allows for checked exceptions.| Modifier and Type | Method and Description |
|---|---|
void |
accept(double value)
Performs this operation on the given argument.
|
static java.util.function.DoubleConsumer |
unchecked(CheckedDoubleConsumer consumer) |
static java.util.function.DoubleConsumer |
unchecked(CheckedDoubleConsumer consumer,
java.util.function.Consumer<Throwable> handler) |
void accept(double value)
throws Throwable
value - the input argumentThrowablestatic java.util.function.DoubleConsumer unchecked(CheckedDoubleConsumer consumer)
Unchecked#doubleConsumer(CheckedDoubleConsumer)}static java.util.function.DoubleConsumer unchecked(CheckedDoubleConsumer consumer, java.util.function.Consumer<Throwable> handler)
Unchecked#doubleConsumer(CheckedDoubleConsumer, Consumer)}Copyright © 2016. All Rights Reserved.