public abstract class Consumer<T> extends Object
| Constructor and Description |
|---|
Consumer() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
accept(T t) |
Consumer<T> |
andThen(Consumer<? super T> after)
Returns a composed
Consumer that performs, in sequence, this
operation followed by the after operation. |
public static final Consumer EMPTY
public abstract void accept(T t)
public final Consumer<T> andThen(Consumer<? super T> after)
Consumer that performs, in sequence, this
operation followed by the after operation. If performing either
operation throws an exception, it is relayed to the caller of the
composed operation. If performing this operation throws an exception,
the after operation will not be performed.after - the operation to perform after this operationConsumer that performs in sequence this
operation followed by the after operationNullPointerException - if after is nullCopyright © 2017 Everit Kft.. All rights reserved.