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.opendoorlogistics.studio.components.map.LayeredDrawables.java

public class LayeredDrawables implements Iterable<DrawableObject> {
    private final Iterable<? extends DrawableObject> inactiveBackground;
    private final Iterable<? extends DrawableObject> active;
    private final Iterable<? extends DrawableObject> inactiveForeground;

    public LayeredDrawables(Iterable<? extends DrawableObject> inactiveBackground,

From source file cn.yiyizuche.common.base.Page.java

/**
 * ORM???. ???, ?Paginator.
 * 
 * @param <T>
 *            Page.
 * 

From source file com.github.steveash.jg2p.util.NestedLoopPairIterable.java

/**
 * Allows you to lazily do a nested loop of P x Q where P is the outer and Q is the inner
 *
 * @author Steve Ash
 */
public class NestedLoopPairIterable<P, Q> implements Iterable<Pair<P, Q>> {

From source file cherry.goods.paginate.Range.java

/**
 * ????????????
 */
public class Range implements Iterable<Long> {

    /** ? */

From source file com.opengamma.analytics.financial.greeks.GreekResultCollection.java

/**
 * 
 */
public class GreekResultCollection implements Iterable<Pair<Greek, Double>> {
    // REVIEW kirk 2010-05-20 -- Ideas for speeding up:
    // - For common cases, store SingleGreekResult in a double[], where the indices are ordinals

From source file org.verdictdb.core.rewriter.query.AggblockMeta.java

/**
 * This class effectively has the following information. [ { "tier": number, "total": } ... ]
 *
 * @author Yongjoo Park
 */
public class AggblockMeta implements Iterable<Entry<Pair<String, String>, Pair<Integer, Integer>>> {

From source file com.intel.cosbench.config.Stage.java

/**
 * The model class mapping to "workstage" in configuration xml with following form:
 *    <workstage name="name" />
 * 
 * @author ywang19, qzheng7
 *

From source file org.ez.flickr.api.entities.Paginated.java

/**
 *
 * @author Fabien Barbero
 */
public final class Paginated<T> implements Iterable<T> {

From source file org.uv.himongo.util.BSONLoader.java

public class BSONLoader implements Iterable<BSONObject>, Iterator<BSONObject> {

    public BSONLoader(final InputStream input) {
        _input = new DataInputStream(input);
    }

From source file certh.iti.mklab.jSimilarity.documentUtils.Corpus.java

/**
 * Corpus is a large collection of elements T. Corpus implements Iterable
 * abstract class to iterate to the set of documents.
 *
 * @author vasgat
 */