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.cg.mapreduce.fpgrowth.mahout.fpm.TransactionTree.java

/**
 * A compact representation of transactions modeled on the lines to
 * {@link com.cg.mapreduce.fpgrowth.mahout.fpm.fpgrowth.FPTree} This reduces plenty of space and speeds up
 * Map/Reduce of {@link PFPGrowth} algorithm by reducing data size passed from the Mapper to the reducer where
 * {@link com.cg.mapreduce.fpgrowth.mahout.fpm.fpgrowth.FPGrowth} mining is done
 */

From source file org.echocat.jomon.process.daemon.ProcessDaemonRepository.java

@ThreadSafe
public class ProcessDaemonRepository<E, ID, P extends GeneratedProcess<E, ID>, D extends ProcessDaemon<E, ID, P, ?, ?>, R extends ProcessDaemonRequirement<E, ID, P, ? extends D>, Q extends BaseProcessDaemonQuery<E, ID, ?, ? extends D>, G extends Generator<P, ?>>
        implements QueryableRepository<Q, ID, D>, Iterable<D>, RemovingRepository<Q, ID>, Generator<D, R>,
        AutoCloseable {

    @Nonnull

From source file org.apache.mahout.fpm.pfpgrowth.TransactionTree.java

/**
 * A compact representation of transactions modeled on the lines to
 * {@link org.apache.mahout.fpm.pfpgrowth.fpgrowth.FPTree} This reduces plenty of space and speeds up
 * Map/Reduce of {@link PFPGrowth} algorithm by reducing data size passed from the Mapper to the reducer where
 * {@link org.apache.mahout.fpm.pfpgrowth.fpgrowth.FPGrowth} mining is done
 */

From source file org.apache.hadoop.hbase.io.BatchUpdate.java

/**
 * A Writable object that contains a series of BatchOperations
 * 
 * There is one BatchUpdate object per server, so a series of batch operations
 * can result in multiple BatchUpdate objects if the batch contains rows that
 * are served by multiple region servers.

From source file la.alsocan.jsonshapeshifter.schemas.Schema.java

/**
 * @author Florian Poulin - https://github.com/fpoulin
 */
public class Schema extends SchemaObjectNode implements Iterable<SchemaNode> {

    private final JsonNode schemaNode;

From source file org.apache.pig.data.DataBag.java

/**
 * A collection of Tuples.  A DataBag may or may not fit into memory.
 * DataBag extends spillable, which means that it registers with a memory
 * manager.  By default, it attempts to keep all of its contents in memory.
 * If it is asked by the memory manager to spill to disk (by a call to
 * spill()), it takes whatever it has in memory, opens a spill file, and

From source file org.pentaho.di.trans.steps.enhanced.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 org.talend.dataprep.schema.xls.streaming.StreamingSheetReader.java

public class StreamingSheetReader implements Iterable<Row> {

    private static final Logger LOGGER = LoggerFactory.getLogger(StreamingSheetReader.class);

    private final SharedStringsTable sst;

From source file kina.entity.Cells.java

/**
 * <p>
 * Represents a tuple inside the Cassandra's datastore. A Cells object basically is an ordered
 * collection of {@link Cell} objects, plus a few utility methods to access
 * specific cells in the row.
 * </p>

From source file org.apache.jackrabbit.oak.commons.sort.StringSort.java

/**
 * Utility class to store a list of string and perform sort on that. For small size
 * the list would be maintained in memory. If the size crosses the required threshold then
 * the sorting would be performed externally
 */
public class StringSort implements Iterable<String>, Closeable {