public static class DoubleConsumer.Util extends Object
| Modifier and Type | Method and Description |
|---|---|
static DoubleConsumer |
andThen(DoubleConsumer c1,
DoubleConsumer c2)
Composes
DoubleConsumer calls. |
public static DoubleConsumer andThen(DoubleConsumer c1, DoubleConsumer c2)
DoubleConsumer calls.
c1.accept(value); c2.accept(value);
c1 - the first DoubleConsumerc2 - the second DoubleConsumerDoubleConsumerNullPointerException - if c1 or c2 is nullCopyright © 2017. All rights reserved.