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.frank.search.solr.core.query.FieldWithQueryParameters.java

/**
 * Field that holds additional parameters to provide query hints to solr.
 * 
 * @author Christoph Strobl
 * 
 * @param <T>

From source file com.mongodb.hadoop.util.BSONLoader.java

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

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

From source file edu.byu.softwareDistribution.web.workflow.Licenses.java

/**
 * @author Tyler Southwick (tyler_southwick@byu.edu)
 */
public class Licenses implements Serializable, Iterable<License> {

    private final static long serialVersionUID = 8L;

From source file de.kasoki.jfeedly.model.Subscriptions.java

/**
 * Representation model of the "/v3/subscriptions" api call
 * @author Christopher Kaster
 */
public class Subscriptions implements Iterable<Subscription> {
    private ArrayList<Subscription> subscriptions;

From source file de.kasoki.jfeedly.model.Tags.java

/**
 * Representation model of the "/v3/tags" api calls
 * @author Christopher Kaster
 */
public class Tags implements Iterable<Tag> {
    private ArrayList<Tag> tags;

From source file org.janusgraph.graphdb.query.profile.SimpleQueryProfiler.java

/**
 * @author Matthias Broecheler (me@matthiasb.com)
 */
public class SimpleQueryProfiler implements QueryProfiler, Iterable<SimpleQueryProfiler> {

    private final List<SimpleQueryProfiler> nestedProfilers = new ArrayList<>();

From source file cc.creativecomputing.events.CCListenerManager.java

/**
 * An event manager can be used to manage a list of event listeners of a particular type. The class
 * provides {@link #add(Object)} and {@link #remove(Object)} methods for registering listeners, as well
 * as a {@link #proxy()} method for firing events to the listeners.
 * 
 * <p/>

From source file com.proper.uip.common.utils.Page.java

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

From source file net.longfalcon.newsj.nntp.client.ArticleIterator.java

/**
 * copied from commons-net class ArticleIterator v3.2
 * Class which wraps an {@code Iterable<String>} of raw article information
 * to generate an {@code Iterable<Article>} of the parsed information.
 * @since 3.0
 */

From source file com.stehno.cola.store.MsgInfoList.java

/**
 *   A List of message information objects.
 *
 * @author Christopher J. Stehno (chris@stehno.com)
 */
public class MsgInfoList implements Iterable<MsgInfo> {