A - the type of state used by this integratorT - the type of elements this integrator consumesR - the type of results this integrator can produceGatherer.Integrator.Greedy<A,T,R> @FunctionalInterface public static interface Gatherer.Integrator<A,T,R>
| Modifier and Type | Interface | Description |
|---|---|---|
static interface |
Gatherer.Integrator.Greedy<A, |
Greedy Integrators consume all their input, and may only relay that the downstream does not want more elements. |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
integrate |
Performs an action given: the current state, the next element, and a downstream object; potentially inspecting and/or updating the state, optionally sending any number of elements downstream -- and then returns whether more elements are to be consumed or not. |
static <A, |
of |
Factory method for turning Integrator-shaped lambdas into Integrators. |
static <A, |
ofGreedy |
Factory method for turning Integrator-shaped lambdas into Gatherer.Integrator.Greedy Integrators. |
boolean integrate(A state, T element, Gatherer.Downstream<? super R> downstream)
state - The state to integrate intoelement - The element to integratedownstream - The downstream object of this integrationtrue if subsequent integration is desired, false if notstatic <A,T,R> Gatherer.Integrator<A,T,R> of(Gatherer.Integrator<A,T,R> integrator)
A - the type of state used by this integratorT - the type of elements this integrator receivesR - the type of results this integrator can produceintegrator - a lambda to create as Integratorstatic <A,T,R> Gatherer.Integrator.Greedy<A,T,R> ofGreedy(Gatherer.Integrator.Greedy<A,T,R> greedy)
Gatherer.Integrator.Greedy Integrators.A - the type of state used by this integratorT - the type of elements this integrator receivesR - the type of results this integrator can producegreedy - a lambda to create as Integrator.Greedy
© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/util/stream/Gatherer.Integrator.html