Example usage for com.google.common.collect FluentIterable subclass-usage

List of usage examples for com.google.common.collect FluentIterable subclass-usage

Introduction

In this page you can find the example usage for com.google.common.collect FluentIterable subclass-usage.

Usage

From source file org.jclouds.collect.IterableWithMarker.java

/**
 * An {@code Iterable} that can be continued
 * 
 * @author Adrian Cole
 */
@Beta

From source file org.jclouds.glacier.domain.ArchiveMetadataCollection.java

public class ArchiveMetadataCollection extends FluentIterable<ArchiveMetadata> {

    @SerializedName("ArchiveList")
    private final Iterable<ArchiveMetadata> archives;
    @SerializedName("VaultARN")
    private final String vaultARN;

From source file org.jclouds.cloudwatch.domain.GetMetricStatisticsResponse.java

/**
 *  the list of {@link Datapoint} for the metric
 *  
 * @see <a href="http://docs.amazonwebservices.com/AmazonCloudWatch/latest/APIReference/API_GetMetricStatistics.html" />
 *
 * @author Jeremy Whitlock

From source file org.jclouds.collect.PagedIterable.java

/**
 * Extends {@link FluentIterable} allowing you to lazily advance through
 * sequence of pages in a result set. Typically used in APIs that return only a
 * certain number of records at a time.
 * </p>
 * Simplest usage is to employ the {@link #concat} convenience function, and iterate.

From source file org.jclouds.collect.AdvanceUntilEmptyIterable.java

/**
 * continues to supply iterables until the last was empty
 * 
 * @param <E>
 */
@Beta