@FunctionalInterface public interface ObjShortConsumer<T>
short-valued argument, and returns no result. This is the
(reference, long) specialization of BiConsumer for short. Unlike most other functional
interfaces, ObjShortConsumer is expected to operate via side-effects.
This is a functional interface whose functional method is
accept(Object, short).
BiConsumer| Modifier and Type | Method and Description |
|---|---|
void |
accept(T t,
short value)
Performs this operation on the given arguments.
|
void accept(T t, short value)
t - the first input argumentvalue - the second input argumentCopyright © 2019. All rights reserved.