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.apache.kylin.storage.hbase.HBaseClientKVIterator.java

/**
 * @author yangli9
 * 
 */
public class HBaseClientKVIterator
        implements Iterable<Pair<ImmutableBytesWritable, ImmutableBytesWritable>>, Closeable {

From source file org.apache.mahout.utils.vectors.arff.ARFFVectorIterable.java

/**
 * Read in ARFF (http://www.cs.waikato.ac.nz/~ml/weka/arff.html) and create {@link Vector}s
 * <p/>
 * Attribute type handling:
 * <ul>
 * <li>Numeric -> As is</li>

From source file io.fabric8.profiles.containers.wildfly.YamlTransformer.java

public class YamlTransformer implements Iterable<String> {

    private final Map<String, Namespace> namespaces = new HashMap<>();
    private Map<String, ?> result;

    public YamlTransformer(Properties properties) {

From source file org.bedework.eventreg.bus.CSVOutputter.java

/** Handle CSV output of data
 *
 * @author douglm
 */
public class CSVOutputter extends Logged implements Iterator<String>, Iterable<String> {
    private final Event ev;

From source file com.jayway.jaxrs.hateoas.support.FieldPath.java

/**
 * @author Mattias Hellborg Arthursson
 * @author Kalle Stenflo
 */
public class FieldPath implements Iterable<String> {
    public final static FieldPath EMPTY_PATH = new FieldPath(Collections.<String>emptyList());

From source file org.diorite.utils.collections.arrays.ReflectArrayIterator.java

/**
 * Iterator implementation for array based on reflections, perfect if you don't know type of array and it can be a primitive type.
 *
 * @see Array
 */
public class ReflectArrayIterator implements Iterator<Object>, Iterable<Object> {

From source file org.gradoop.model.impl.properties.PropertyList.java

/**
 * Represents a list of properties.
 *
 * Properties inside property lists are ordered by their insertion order. A
 * property list cannot contain two properties with the same key.
 *

From source file org.apache.kylin.storage.hbase.cube.v1.HBaseClientKVIterator.java

/**
 * @author yangli9
 * 
 */
public class HBaseClientKVIterator implements Iterable<IIRow>, Closeable {

From source file org.gradoop.common.model.impl.properties.PropertyList.java

/**
 * Represents a list of properties.
 *
 * Properties inside property lists are ordered by their insertion order. A
 * property list cannot contain two properties with the same key.
 *

From source file objenome.solver.evolve.Population.java

/**
 * A <code>Population</code> is an ordered collection of {@link Organism}s.
 */
public class Population<I extends Organism> implements Iterable<I>, Cloneable {

    // TODO: make it serializable