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