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.xwiki.watchlist.internal.notification.WatchListEventMimeMessageIterator.java

/**
 * Generate {@link MimeMessage}s from {@link WatchListMessageData}s extracted by an iterator over a list of subscribers.
 *
 * @version $Id: 88551a662ab5d8ad0189e6f37d39b1ebeb379857 $
 * @since 7.1M1
 */

From source file org.apache.streams.elasticsearch.ElasticsearchQuery.java

public class ElasticsearchQuery implements Iterable<SearchHit>, Iterator<SearchHit>, Serializable {

    private static final Logger LOGGER = LoggerFactory.getLogger(ElasticsearchQuery.class);
    private static final int SCROLL_POSITION_NOT_INITIALIZED = -3;

    private ElasticsearchClientManager elasticsearchClientManager;

From source file org.springframework.data.rest.webmvc.json.JacksonMetadata.java

/**
 * Value object to abstract Jackson based bean metadata of a given type.
 * 
 * @author Oliver Gierke
 * @author Greg Turnquist
 */

From source file hudson.matrix.Axis.java

/**
 * Configuration axis.
 *
 * <p>
 * This class represents a single dimension of the configuration matrix.
 * For example, the JAX-WS RI test configuration might include

From source file com.vmware.certificate.VMCAClient.java

/**
 * @author Anu Engineer
 *
 */
public class VMCAClient implements Iterable<X509Certificate> {
    public static final String BEGIN_CERT = "-----BEGIN CERTIFICATE-----\n";

From source file org.pentaho.di.trans.steps.jsoninput.reader.InputsReader.java

public class InputsReader implements Iterable<InputStream> {

    private JsonInput step;
    private JsonInputMeta meta;
    private JsonInputData data;
    private ErrorHandler errorHandler;

From source file com.github.tell.mathematics.combinatorics.Combination.java

/**
 * @author Tadanori TERUYA &lt;tadanori.teruya@gmail.com&gt; (2012)
 */
public final class Combination<T> implements Iterable<T[]> {

    private static final Logger logger = LoggerFactory.getLogger(Combination.class);

From source file com.datatorrent.stram.client.DTConfiguration.java

/**
 * <p>
 * DTConfiguration class</p>
 *
 * @since 0.9.4
 */

From source file ivorius.ivtoolkit.models.utils.ArrayMap.java

/**
 * An ordered or unordered map of objects. This implementation uses arrays to store the keys and values, which means
 * {@link #getKey(Object, boolean) gets} do a comparison for each key in the map. This is slower than a typical hash map
 * implementation, but may be acceptable for small maps and has the benefits that keys and values can be accessed by index, which
 * makes iteration fast. Like List, if ordered is false, * this class avoids a memory copy when removing elements (the
 * last element is moved to the removed element's position).

From source file ddf.catalog.util.impl.ResultIterable.java

/**
 * Class used to iterate over the {@link Result} objects contained in a {@link
 * ddf.catalog.operation.QueryResponse} returned when executing a {@link QueryRequest}. The class
 * will fetch new results as needed until all results that match the query provided have been
 * exhausted.
 *