Uses of Class
com.google.common.collect.FluentIterable

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.
<T> FluentIterable<T>
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
<E> FluentIterable<E>
FluentIterable.from(FluentIterable<E> iterable)
          Deprecated. instances of FluentIterable don't need to be converted to FluentIterable
static
<E> FluentIterable<E>
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.
<T> FluentIterable<T>
FluentIterable.transform(Function<? super E,T> function)
          Returns a fluent iterable that applies function to each element of this fluent iterable.
<T> FluentIterable<T>
FluentIterable.transformAndConcat(Function<? super E,? extends Iterable<T>> function)
          Applies function to each element of this fluent iterable and returns a fluent iterable with the concatenated combination of results.
 

Methods in com.google.common.collect with parameters of type FluentIterable
static
<E> FluentIterable<E>
FluentIterable.from(FluentIterable<E> iterable)
          Deprecated. instances of FluentIterable don't need to be converted to FluentIterable
 



Copyright © 2010-2012. All Rights Reserved.