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