|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FluentIterable | |
---|---|
com.google.common.collect | This package contains generic collection interfaces and implementations, and other utilities for working with collections. |
Uses of FluentIterable in com.google.common.collect |
---|
Methods in com.google.common.collect that return FluentIterable | ||
---|---|---|
FluentIterable<E> |
FluentIterable.cycle()
Returns a fluent iterable whose Iterator cycles indefinitely over the elements of
this fluent iterable. |
|
|
FluentIterable.filter(Class<T> type)
Returns the elements from this fluent iterable that are instances of class type . |
|
FluentIterable<E> |
FluentIterable.filter(Predicate<? super E> predicate)
Returns the elements from this fluent iterable that satisfy a predicate. |
|
static
|
FluentIterable.from(FluentIterable<E> iterable)
Deprecated. instances of FluentIterable don't need to be converted to
FluentIterable |
|
static
|
FluentIterable.from(Iterable<E> iterable)
Returns a fluent iterable that wraps iterable , or iterable itself if it
is already a FluentIterable . |
|
FluentIterable<E> |
FluentIterable.limit(int size)
Creates a fluent iterable with the first size elements of this
fluent iterable. |
|
FluentIterable<E> |
FluentIterable.skip(int numberToSkip)
Returns a view of this fluent iterable that skips its first numberToSkip
elements. |
|
|
FluentIterable.transform(Function<? super E,T> function)
Returns a fluent iterable that applies function to each element of this
fluent iterable. |
Methods in com.google.common.collect with parameters of type FluentIterable | ||
---|---|---|
static
|
FluentIterable.from(FluentIterable<E> iterable)
Deprecated. instances of FluentIterable don't need to be converted to
FluentIterable |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |