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 org.gbif.file.CSVReader.java

public class CSVReader implements ClosableReportingIterator<String[]>, Iterable<String[]> {

    private static final Logger LOG = LoggerFactory.getLogger(CSVReader.class);
    public final int headerRows;
    public final String encoding;
    public final String delimiter;

From source file org.codehaus.mojo.license.model.LicenseRepository.java

/**
 * @author tchemit <chemit@codelutin.com>
 * @since 1.0
 */
public class LicenseRepository implements Iterable<License> {

From source file org.ncic.bioinfo.sparkseq.algorithms.data.sam.PileupElementTracker.java

/**
 * Author: wbc
 */
abstract class PileupElementTracker<PE extends PileupElement> implements Iterable<PE> {
    public abstract int size();

From source file org.pentaho.di.core.util.StringListPluginProperty.java

/**
 * @author <a href="mailto:thomas.hoedl@aschauer-edv.at">Thomas Hoedl</a>
 *
 */
public class StringListPluginProperty extends KeyValue<List<String>> implements PluginProperty, Iterable<String> {

From source file org.apache.isis.core.runtime.persistence.adaptermanager.PojoAdapterHashMap.java

/**
 * TODO: an alternative might be to use {@link IdentityMap}.
 */
public class PojoAdapterHashMap
        implements DebuggableWithTitle, Iterable<ObjectAdapter>, SessionScopedComponent, Resettable {

From source file org.safecreative.api.wrapper.model.Metadata.java

/**
 * Metadata holder
 * 
 * @author mpolo@safecreative.org
 */
public class Metadata implements Serializable, Iterable<List<Metadata.Entry>> {

From source file org.apache.isis.runtimes.dflt.runtime.persistence.adaptermanager.PojoAdapterHashMap.java

/**
 * TODO: an alternative might be to use {@link IdentityMap}.
 */
public class PojoAdapterHashMap
        implements DebuggableWithTitle, Iterable<ObjectAdapter>, SessionScopedComponent, Resettable {

From source file ca.phon.ipa.features.FeatureSet.java

/**
 * Class to represent a charater's feature
 * set.
 *
 */
public class FeatureSet implements Iterable<Feature> {

From source file lshw.types.Nodes.java

@XmlRootElement(name = "list")
@XmlAccessorType(value = XmlAccessType.FIELD)
public class Nodes implements Iterable<NodeInfo>, Serializable {

    /**
     * Serial code version <code>serialVersionUID<code>

From source file r.lang.ComplexVector.java

public class ComplexVector extends AbstractAtomicVector implements Iterable<Complex> {

    private final Complex[] values;
    public static final String TYPE_NAME = "complex";
    public static final ComplexVector EMPTY = new ComplexVector();