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 net.myrrix.batch.common.iterator.sequencefile.SequenceFileIterable.java

/**
 * <p>{@link Iterable} counterpart to {@link SequenceFileIterator}.</p>
 * 
 * @author Sean Owen
 * @author Mahout
 * @since 1.0

From source file org.apache.hadoop.util.GSet.java

/**
 * A {@link GSet} is set,
 * which supports the {@link #get(Object)} operation.
 * The {@link #get(Object)} operation uses a key to lookup an element.
 * 
 * Null element is not supported.

From source file net.longfalcon.newsj.nntp.client.ReplyIterator.java

/**
 * Wraps a {@link BufferedReader} and returns an {@code Iterable<String>}
 * which returns the individual lines from the reader.
 * @since 3.0
 */
class ReplyIterator implements Iterator<String>, Iterable<String> {

From source file uk.ac.ebi.spot.rdf.model.AssayGroup.java

public class AssayGroup implements Iterable<String> {

    private String id;

    private Set<String> assayAccessions;

From source file com.qwazr.utils.json.client.JsonMultiClientAbstract.java

public abstract class JsonMultiClientAbstract<T extends JsonClientAbstract> implements Iterable<T> {

    private final T[] clientsArray;
    private final HashMap<String, T> clientsMap;
    protected final ExecutorService executor;

From source file com.graphaware.tx.event.improved.propertycontainer.snapshot.LabelSnapshotIterator.java

/**
 * {@link com.graphaware.tx.event.improved.propertycontainer.snapshot.NodeSnapshot}'s {@link org.neo4j.graphdb.Label} iterator.
 */
public class LabelSnapshotIterator extends PrefetchingIterator<Label> implements Iterator<Label>, Iterable<Label> {

    private final Node node;

From source file de.unioninvestment.eai.portal.portlet.crud.domain.model.FormFields.java

/**
 * Aggregations-Objekt fr Formularfelder, bietet Aggregatfunktionen.
 * 
 * @author carsten.mjartan
 */
public class FormFields implements Iterable<FormField>, Serializable {

From source file edu.indiana.d2i.htrc.io.dataapi.IDList.java

public class IDList implements Iterable<Text> {

    private static final Log logger = LogFactory.getLog(IDList.class);

    private LineReader reader = null;

From source file uk.ac.ebi.atlas.model.AssayGroup.java

public class AssayGroup implements Iterable<String> {

    private String id;

    private Set<String> assayAccessions;

From source file org.verdictdb.core.scrambling.ScrambleMetaSet.java

/**
 * A set of scrambleMeta items.
 * 
 * The internal order of ScrambleMeta items is equal to the insertion order.
 * @author pyongjoo
 *