|
Spec-Zone .ru
спецификации, руководства, описания, API
|
T - the type of the first argument to the accept operation.U - the type of the second argument to the accept operation.@FunctionalInterface public interface BiConsumer<T,U>
Consumer. Unlike most other
functional interfaces, BiConsumer is expected to operate via
side-effects.Consumer| Modifier and Type | Method and Description |
|---|---|
void |
accept(T t,
U u)
Performs operations upon the provided objects which may modify those
objects and/or external state.
|
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.
DRAFT ea-b92