T - public interface Traversable<T>
filter(Predicate).
forEach(Consumer).
Once a terminal operation is completed, the resources taken by the
traversable are released.
forEach(Consumer), the Consumer function is
executed wherever a particular key resides. To execute a for-each operation
where the side effects are executed locally, all the Traversable's
data needs to be collected and iterated over manually.| Modifier and Type | Method and Description |
|---|---|
boolean |
allMatch(Predicate<? super T> p)
A terminal operation that returns whether all elements of this
traversable match the provided predicate.
|
boolean |
anyMatch(Predicate<? super T> p)
A terminal operation that returns whether any elements of this
traversable match the provided predicate.
|
<R,A> R |
collect(Collector<? super T,A,R> collector)
A terminal operation that transforms the traversable into a result
container using a
Collector. |
<R> R |
collect(Supplier<R> s,
BiConsumer<R,? super T> accumulator,
BiConsumer<R,R> combiner)
A terminal operation that transforms the traversable into a result
container, first constructed with the given supplier, and then
accumulating elements over it with the given consumer.
|
long |
count()
A terminal operation that returns the number of elements in the traversable.
|
Traversable<T> |
filter(Predicate<? super T> p)
An intermediate operation that returns a traversable containing elements
matching the given predicate.
|
Optional<T> |
findAny()
A terminal operation that returns an optional containing an element of
the traversable, or an empty optional if empty.
|
<R> Traversable<R> |
flatMap(Function<? super T,? extends Traversable<? extends R>> f)
An intermediate operation that returns a traversable containing the
results of replacing each element of this traversable with the contents
of a traversable produced by applying the provided function to each element.
|
void |
forEach(Consumer<? super T> c)
A terminal operation that applies an operation to all elements of this
traversable.
|
<R> Traversable<R> |
map(Function<? super T,? extends R> f)
An intermediate operation that returns a traversable containing the
results of applying the given function over the elements of the
traversable.
|
default Optional<T> |
max(Comparator<? super T> comparator)
A terminal operation that returns an optional containing the maximum
element of this traversable based on the comparator passed in.
|
default Optional<T> |
min(Comparator<? super T> comparator)
A terminal operation that returns an optional containing the minimum
element of this traversable based on the comparator passed in.
|
boolean |
noneMatch(Predicate<? super T> predicate)
A terminal operation that returns whether no elements of this
traversable match the provided predicate.
|
Optional<T> |
reduce(BinaryOperator<T> folder)
A terminal operation that applies a binary folding operation to all
elements of this traversable, and wraps the result in an optional.
|
T |
reduce(T z,
BinaryOperator<T> folder)
A terminal operation that applies a binary folding operation to a start
value and all elements of this traversable.
|
<U> U |
reduce(U z,
BiFunction<U,? super T,U> mapper,
BinaryOperator<U> folder)
A terminal operation that applies a binary folding operation to a start
value and the result of each element having a mapping function applied.
|
Traversable<T> filter(Predicate<? super T> p)
<R> Traversable<R> map(Function<? super T,? extends R> f)
<R> Traversable<R> flatMap(Function<? super T,? extends Traversable<? extends R>> f)
void forEach(Consumer<? super T> c)
T reduce(T z, BinaryOperator<T> folder)
Optional<T> reduce(BinaryOperator<T> folder)
<U> U reduce(U z,
BiFunction<U,? super T,U> mapper,
BinaryOperator<U> folder)
<R> R collect(Supplier<R> s, BiConsumer<R,? super T> accumulator, BiConsumer<R,R> combiner)
Supplier and BiConsumer instances passed in are sent to
other nodes and hence they need to be marshallable. If the collect
operation can be defined using the helper methods in
Collectors, it is recommended that those are
used, which can easily be made marshalled using the
org.infinispan.stream.CacheCollectors#serializableCollector method.<R,A> R collect(Collector<? super T,A,R> collector)
Collector.
In distributed environments where some keys are remote, the
Collector instance passed in is sent other nodes and hence it
needs to be marshallable. This can easily be made achieved using the
org.infinispan.stream.CacheCollectors#serializableCollector method.default Optional<T> min(Comparator<? super T> comparator)
default Optional<T> max(Comparator<? super T> comparator)
long count()
boolean anyMatch(Predicate<? super T> p)
boolean allMatch(Predicate<? super T> p)
boolean noneMatch(Predicate<? super T> predicate)
Copyright © 2015 JBoss, a division of Red Hat. All rights reserved.