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