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 net.jazdw.rql.parser.ASTNode.java

/**
 * @author Jared Wiltshire
 */
public class ASTNode implements Iterable<Object> {
    private ASTNode parent;
    private String name;

From source file net.netheos.pcsapi.request.Headers.java

/**
 * Centralizes the whole headers on a request or in a http response.
 */
public class Headers implements Iterable<Header> {

    private final List<Header> headers = new ArrayList<Header>();

From source file org.codehaus.httpcache4j.mutable.MutableHeaders.java

/**
 * @author <a href="mailto:hamnis@codehaus.org">Erlend Hamnaberg</a>
 * @version $Revision: $
 */
public class MutableHeaders implements Iterable<Header> {
    private Headers headers;

From source file org.elasticsearch.shell.command.HttpParameters.java

/**
 * @author Luca Cavanna
 *
 * Http components compatible builder for http parameters needed for a POST or PUT request
 */
public class HttpParameters implements Iterable<NameValuePair> {

From source file com.tbodt.jswerve.Headers.java

/**
 * HTTP headers.
 *
 * This class does not include any code for parsing or formatting headers. It is only a convenient representation.
 *
 * @author Theodore Dubois

From source file com.hp.autonomy.aci.content.database.Databases.java

/**
 * <p>Helper class for building database restrictions, such as those used in the <tt>databasematch</tt> parameter of a
 * query. Individual database names are represented as Strings and deduplicated where possible.
 *
 * <p>Some of the characteristics of the {@code append} methods of this class might be considered inconsistent with the
 * behaviour of IDOL's <tt>databasematch</tt> parameter. This has been done to make those methods behave as a logical

From source file org.bhave.sweeper.ParameterSweep.java

/**
 * Interface for Parameter Sweeps. These are data structures capable of storing
 * and iterating over single or aggregate parameter sweeps. Each parameter sweep
 * is uniquely identified according to its content so two identical parameter
 * sweeps should return true with equals.
 *

From source file com.stratio.cassandra.index.query.Sorting.java

/**
 * A sorting of fields for a search.
 *
 * @author Andres de la Pena <adelapena@stratio.com>
 */
public class Sorting implements Iterable<SortingField> {

From source file org.springframework.integration.store.AbstractMessageGroupStore.java

/**
 * @author Dave Syer
 * @author Oleg Zhurakousky
 * 
 * @since 2.0
 *

From source file es.warp.killthedj.playlist.Playlist.java

public class Playlist implements Iterable<AvailableTrack> {
    private final List<AvailableTrack> tracks = new ArrayList<AvailableTrack>();

    public Playlist(JSONArray json) throws JSONException {
        for (int i = 0; i < json.length(); i++) {
            tracks.add(new AvailableTrack(json.getJSONObject(i)));