Example usage for java.lang Iterable interface-usage

List of usage examples for java.lang Iterable interface-usage

Introduction

In this page you can find the example usage for java.lang Iterable interface-usage.

Usage

From source file edu.cornell.med.icb.goby.reads.ReadsReader.java

/**
 * Reads sequences in the compact format from a stream produced with MessageChunkWriter.
 *
 * @author Fabien Campagne
 *         Date: Apr 24, 2009
 *         Time: 6:44:29 PM

From source file nz.govt.natlib.ndha.manualdeposit.metadata.MetaDataFields.java

public final class MetaDataFields implements Serializable, Iterable<IMetaDataTypeExtended> {

    /**
     * 
     */
    private static final long serialVersionUID = 436612415898570626L;

From source file net.ripe.ipresource.IpResourceSet.java

/**
 * A mutable set of IP resources. Resources can be ASNs, IPv4 addresses, IPv6
 * addresses, or ranges. Adjacent resources are merged. Single-sized ranges are
 * normalized into single resources.
 */
public class IpResourceSet implements Iterable<IpResource>, Serializable {

From source file com.rockhoppertech.music.chord.ChordProgression.java

/**
 * A sequence of chords. Can use a format similar to fake books.
 * 
 * @author <a href="mailto:gene@rockhoppertech.com">Gene De Lisa</a>
 * 
 */

From source file edu.brown.benchmark.seats.util.CustomerIdIterable.java

public class CustomerIdIterable implements Iterable<CustomerId> {
    private final Histogram<Long> airport_max_customer_id;
    private final ListOrderedSet<Long> airport_ids = new ListOrderedSet<Long>();
    private Long last_airport_id = null;
    private int last_id = -1;
    private long last_max_id = -1;

From source file com.oltpbenchmark.benchmarks.seats.util.CustomerIdIterable.java

public class CustomerIdIterable implements Iterable<CustomerId> {
    private final Histogram<Long> airport_max_customer_id;
    private final ListOrderedSet<Long> airport_ids = new ListOrderedSet<Long>();
    private Long last_airport_id = null;
    private int last_id = -1;
    private long last_max_id = -1;

From source file org.apache.mahout.freqtermsets.TransactionTree.java

/**
 * A compact representation of transactions modeled on the lines to
 * {@link org.apache.mahout.freqtermsets.fpgrowth.FPTree} This reduces plenty of
 * space and speeds up Map/Reduce of {@link PFPGrowth} algorithm by reducing
 * data size passed from the Mapper to the reducer where
 * {@link org.apache.mahout.freqtermsets.fpgrowth.FPGrowth} mining is done

From source file r.lang.ListVector.java

/**
 * Generic vector of {@code SEXP}s
 */
public class ListVector extends AbstractVector implements Iterable<SEXP>, HasNamedValues {

    public static final String TYPE_NAME = "list";

From source file hudson.util.CopyOnWriteList.java

/**
 * {@link List}-like implementation that has copy-on-write semantics.
 *
 * <p>
 * This class is suitable where highly concurrent access is needed, yet
 * the write operation is relatively uncommon.