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.issue.IssuesCache.java

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

From source file org.commonjava.maven.atlas.graph.filter.AbstractAggregatingFilter.java

public abstract class AbstractAggregatingFilter
        implements ProjectRelationshipFilter, Iterable<ProjectRelationshipFilter> {
    /**
     * 
     */
    private static final long serialVersionUID = 1L;

From source file org.commonjava.cartographer.graph.filter.AbstractAggregatingFilter.java

public abstract class AbstractAggregatingFilter
        implements ProjectRelationshipFilter, Iterable<ProjectRelationshipFilter> {
    /**
     * 
     */
    private static final long serialVersionUID = 1L;

From source file org.apache.kylin.storage.hbase.ii.coprocessor.endpoint.HbaseServerKVIterator.java

/**
 */
public class HbaseServerKVIterator implements Iterable<IIRow>, Closeable {

    private RegionScanner innerScanner;
    private Logger logger = LoggerFactory.getLogger(HbaseServerKVIterator.class);

From source file logicProteinHypernetwork.analysis.reactions.ComplexMultigraph.java

/**
 * 
 * @author Johannes Kster <johannes.koester@tu-dortmund.de>
 */
public class ComplexMultigraph extends UndirectedSparseGraph<Integer, Integer> implements Iterable<Protein> {

From source file org.molgenis.data.rest.SortV1.java

/**
 * Copy of org.springframework.data.domain.Sort for backwards compatibility
 *
 * <p>Sort option for queries. You have to provide at least a list of properties to sort for that
 * must not include {@literal null} or empty strings. The direction defaults to {@link
 * SortV1#DEFAULT_DIRECTION}.

From source file org.norvelle.addressdiscoverer.parse.structured.BackwardsFlattenedDocumentIterator.java

/**
 * Given a standard tree-shaped JSoup Document, create a flattened list of
 * final elements (specifically, textual elements and emails) that can be
 * navigated from last to first in order to extract information for building
 * Individuals.
 * 

From source file edu.cornell.med.icb.iterators.TextFileLineIterator.java

/**
 * This class allows line-by-line iteration through a text file.
 * The iterator's remove() method throws UnsupportedOperatorException.
 * If the opening of the file causes an IOException, it will be thrown as normal.
 * If during the READING of the file there is an IOException, the iterator
 * will wrap it in an IllegalArgumentExceptions. This is necessary because

From source file org.diorite.utils.collections.arrays.ArrayIterator.java

/**
 * Iterator implementation for array.
 *
 * @param <T> type of array
 */
public class ArrayIterator<T> implements Iterator<T>, Iterable<T> {

From source file org.jboss.pnc.causeway.brewclient.ImportFileGenerator.java

/**
 *
 * @author Honza Brzdil <jbrazdil@redhat.com>
 */
public class ImportFileGenerator implements Iterable<Supplier<ImportFile>> {
    private final Set<URL> urls = new HashSet<>();