public interface FluentIterable<E>
extends java.lang.Iterable<E>
Iterable that can be decorated with a fluent interface.| Modifier and Type | Method and Description |
|---|---|
FluentIterable<E> |
filtered(Filter<E> filter)
Returns a
FluentIterable that filters the elements of this FluentIterable with the given
filter. |
<T> FluentIterable<T> |
mapped(Function<E,T> function)
|
FluentIterable<E> filtered(Filter<E> filter)
FluentIterable that filters the elements of this FluentIterable with the given
filter.<T> FluentIterable<T> mapped(Function<E,T> function)