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.smartfrog.services.deployapi.notifications.EventSubscriberManager.java

/**
 * something to handle all subscriptions. Unlike {@link SubscriptionServiceStore}, this
 * component uses hard references, so retains the links.
 * created 27-Sep-2006 11:34:52
 */

From source file com.cloudera.sqoop.cli.ToolOptions.java

/**
 * Class that holds several sets of related options, providing a container
 * for all the options associated with a single tool.
 * The order in which sets of related options are added to this tool is
 * preserved in printing and iteration.
 */

From source file gdsc.core.utils.StoredDataStatistics.java

/**
 * Calculate the mean and standard deviation of data. Stores the data for later retrieval.
 */
public class StoredDataStatistics extends Statistics implements Iterable<Double>, DoubleData {
    private double[] values = new double[0];
    private DescriptiveStatistics stats = null;

From source file norbert.mynemo.dataimport.scraping.input.CkMappingFile.java

/**
 * This class represents a file containing mappings between CK movie ids and IMDb movie ids. The
 * format of this file is defined in the {@link CkMapping} class.
 */
public class CkMappingFile implements Iterable<CkMapping> {

From source file norbert.mynemo.dataimport.scraping.input.CkRatingFile.java

/**
 * This class represents a file containing ratings of CK web site. The format of this file is
 * defined in the {@link CkRating} class.
 */
public class CkRatingFile implements Iterable<CkRating> {

From source file com.github.hateoas.forms.spring.uber.AbstractUberNode.java

public abstract class AbstractUberNode implements Iterable<UberNode> {

    protected List<UberNode> data = new ArrayList<UberNode>();

    public AbstractUberNode() {
        super();

From source file org.loklak.susi.SusiArgument.java

/**
 * An Argument is a series of thoughts, also known as a 'proof' in automated reasoning.
 * Within the Susi AI infrastructure this may be considered as the representation of
 * the short-time memory of thinking inside Susi.
 */
public class SusiArgument implements Iterable<SusiThought> {

From source file org.opencb.opencga.catalog.db.api.DBAdaptor.java

/**
 * Created by imedina on 07/01/16.
 */
public interface DBAdaptor<T> extends Iterable<T> {

    /**

From source file de.codesourcery.eve.skills.datamodel.ShoppingList.java

public class ShoppingList implements Iterable<ShoppingListEntry> {
    private String title;
    private String notes;

    private final List<ShoppingListEntry> entries = new ArrayList<ShoppingListEntry>();

From source file com.antsdb.saltedfish.nosql.ConcurrentLinkedList.java

/**
 * 
 * @author wgu0
 */
public class ConcurrentLinkedList<T> implements Iterable<T>, Collection<T> {
    AtomicReference<Node<T>> head = new AtomicReference<ConcurrentLinkedList.Node<T>>();