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.kiji.express.wikimedia.util.RevisionDelta.java

/**
 * The delta string in a revision entry that contains the instructions for revising a
 * piece of text.
 *
 * <p>The delta string is a sequence of tab-separated operations. Each operation has
 * two parts: an operator and an operand. The operator is the first character of the

From source file org.apache.kylin.storage.hbase.coprocessor.endpoint.HbaseServerKVIterator.java

/**
 * Created by honma on 11/10/14.
 */
public class HbaseServerKVIterator
        implements Iterable<Pair<ImmutableBytesWritable, ImmutableBytesWritable>>, Closeable {

From source file com.github.blacklocus.rdsecho.utl.PagingIterable.java

@NotThreadSafe
class PagingIterable<T> implements Iterable<T>, Iterator<T> {

    final Supplier<Iterable<T>> supplier;
    Iterator<T> currentPage;

From source file org.kmnet.com.fw.common.message.ResultMessages.java

/**
 * Messages which have {@link ResultMessageType} and list of {@link ResultMessage}
 */
public class ResultMessages implements Serializable, Iterable<ResultMessage> {

    /**

From source file org.apache.crunch.materialize.MaterializableIterable.java

public class MaterializableIterable<E> implements Iterable<E> {

    private static final Log LOG = LogFactory.getLog(MaterializableIterable.class);

    private final Pipeline pipeline;
    private final ReadableSource<E> source;

From source file com.dalabs.droop.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 org.apache.pig.impl.plan.CompilationMessageCollector.java

/***
 * This class is used for collecting all messages (error + warning) in
 * compilation process. These messages are reported back to users
 * at the end of compilation.
 *
 * iterator() has to be called after CompilationMessageCollector is fully

From source file sg.atom.utils.datastructure.tuple.Tuple.java

/**
 * A {@literal Tuple} is an immutable {@link Collection} of objects, each of
 * which can be of an arbitrary type.
 *
 * @author Jon Brisbin
 * @author Stephane Maldini

From source file org.apache.drill.common.expression.FunctionBase.java

public abstract class FunctionBase extends LogicalExpressionBase implements Iterable<LogicalExpression> {
    public final ImmutableList<LogicalExpression> expressions;

    protected void funcToString(StringBuilder sb, String functionName) {
        sb.append(" ");
        sb.append(functionName);

From source file org.apache.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.
 */