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.insightml.data.samples.ISamples.java

public interface ISamples<S extends Sample, E> extends Iterable<S> {

    S get(int i);

    int getId(int i);

From source file com.riversoforion.zambezi.dice.Dice.java

/**
 * @author macdaddy
 */
public class Dice implements Iterable<Die>, Comparable<Dice> {

    private Collection<Die> dice = new ArrayList<Die>();

From source file com.github.rutledgepaulv.qbuilders.structures.FieldPath.java

public class FieldPath implements Iterable<FieldPath.FieldNamespace> {

    private List<FieldNamespace> chain = new LinkedList<>();

    public FieldPath(String raw) {
        chain.add(new FieldNamespace(raw));

From source file org.carewebframework.api.spring.BeanRegistry.java

/**
 * Base class for deriving registries that track managed beans of a given class or interface type.
 * 
 * @param <T> The class or interface being tracked.
 */
public class BeanRegistry<T> implements DestructionAwareBeanPostProcessor, Iterable<T> {

From source file com.hp.autonomy.aci.content.printfields.PrintFields.java

/**
 * Helper class for building printfields, such as those used in the <tt>printfields</tt> parameter of a query.
 * Individual field names are represented as Strings and deduplicated where possible in a case-sensitive manner. No
 * attempt is currently made to interpret wildcards intelligently.
 *
 * <p>This class makes no attempt at internal synchronization and is not safe to be used by multiple threads without

From source file com.opengamma.financial.security.cds.CDSIndexTerms.java

/**
 * Immutable set of tenors that represents the CreditDefaultSwapIndex security terms
 */
public final class CDSIndexTerms implements Iterable<Tenor>, Serializable {

    /** Serialization version. */

From source file com.opengamma.integration.tool.portfolio.xml.XmlFileReader.java

/**
 * Parses an XML file and if the file is valid, generates a collection
 * of Portfolio readers (one for each portfolio in the file). Note that
 * as the class implements Iterable, it is stateful and not thread safe.
 */
public class XmlFileReader implements Iterable<PortfolioReader> {

From source file org.openscore.content.httpclient.build.auth.AuthTypes.java

/**
 * Created with IntelliJ IDEA.
 * User: davidmih
 * Date: 10/8/14
 */
public class AuthTypes implements Iterable<String> {

From source file IntegerRange.java

/**
 * Represents a sequence of integer values, either ascending or descending. The sequence is always inclusive (of the
 * finish value).
 */
public final class IntegerRange implements Iterable<Integer> {
    private final int start;

From source file org.carewebframework.ui.mockup.MockupTypeEnumerator.java

/**
 * An enumerator for supported UI mockup frameworks. These are loaded from one or more property
 * files named "ui-mockup.properties".
 */
public class MockupTypeEnumerator implements Iterable<String> {