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 com.marvelution.hudson.plugins.apiv2.cache.activity.ActivitiesCache.java

/**
 * @author <a href="mailto:markrekveld@marvelution.com">Mark Rekveld</a>
 *
 * @since 4.4.0
 */
public class ActivitiesCache implements Iterable<ActivityCache>, Collection<ActivityCache> {

From source file org.codehaus.httpcache4j.Headers.java

/**
 * A collection of headers.
 * All methods that modify the headers return a new Headers object. 
 *
 * @author <a href="mailto:hamnis@codehaus.org">Erlend Hamnaberg</a>
 */

From source file com.github.jillesvangurp.osm2geojson.OsmBlobIterable.java

/**
 * Iterates over the open street map xml and yields one parseable node, way, or relation xml string blob each time next
 * is called. Using this class, you can use a simple for loop to loop over the xml.
 */
public final class OsmBlobIterable implements Iterable<String> {

From source file org.ops4j.pax.url.assembly.internal.ResourceAssembly.java

/**
 * JAVADOC
 *
 * @author Alin Dreghiciu
 * @since 1.1.0, August 31, 2009
 */

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

/**
 * The {@code LicenseStore} offers {@link License} coming from different {@link
 * LicenseRepository}.
 *
 * @author tchemit <chemit@codelutin.com>
 * @since 1.0

From source file org.broadinstitute.sting.utils.pileup.PileupElementTracker.java

/**
 * Javadoc goes here.
 *
 * @author mhanna
 * @version 0.1
 */

From source file org.broadinstitute.gatk.utils.pileup.PileupElementTracker.java

/**
 * Javadoc goes here.
 *
 * @author mhanna
 * @version 0.1
 */

From source file feather.rs.data.Sort.java

/**
 * Sort option for queries. You have to provide at least a list of properties to sort for that must not include
 * {@code null} or empty strings. The direction defaults to {@value Sort#DEFAULT_DIRECTION}.
 * 
 * @author Oliver Gierke
 */

From source file com.celements.iterator.DocumentIterator.java

public class DocumentIterator implements Iterator<XWikiDocument>, Iterable<XWikiDocument> {

    private static Log mLogger = LogFactory.getFactory().getInstance(XObjectIterator.class);

    private List<String> _docList;
    private XWikiContext _context;

From source file com.github.steveash.jg2p.align.ProbTable.java

/**
 * Table of probabilities from Xi to Yi
 *
 * @author Steve Ash
 */
public class ProbTable implements Iterable<Table.Cell<String, String, Double>>, Externalizable {