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.hadoop.hdfs.hoss.ds.IntHashMap.java

/**
 * Native Integer HashMap This class is NOT Thread-Safe
 * 
 * @param <V>
 *            type of values
 */

From source file r.lang.DoubleVector.java

public final class DoubleVector extends AbstractAtomicVector implements Iterable<Double> {

    public static final String TYPE_NAME = "double";

    public static final Vector.Type VECTOR_TYPE = new DoubleType();
    public static final DoubleVector EMPTY = new DoubleVector();

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

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

From source file com.diversityarrays.kdxplore.curate.StatsData.java

public class StatsData implements Iterable<TraitInstance> {

    static private final Comparator<TraitInstance> TRAIT_INSTANCE_COMPARATOR = new Comparator<TraitInstance>() {
        @Override
        public int compare(TraitInstance o1, TraitInstance o2) {
            int diff = o1.getTraitName().compareTo(o2.getTraitName());

From source file org.apache.accumulo.core.security.Authorizations.java

/**
 * A collection of authorization strings.
 */
public class Authorizations implements Iterable<byte[]>, Serializable, AuthorizationContainer {

    private static final long serialVersionUID = 1L;

From source file org.renjin.sexp.StringVector.java

public abstract class StringVector extends AbstractAtomicVector implements Iterable<String> {

    public static final String TYPE_NAME = "character";
    public static final String NA = null;

    public static final Vector.Type VECTOR_TYPE = new StringType();

From source file org.libreplan.business.planner.chart.ContiguousDaysLine.java

/**
 * It represents some contiguous days from a start date to a not included end
 * date. Each of these {@link LocalDate} has an associated value that can be
 * <code>null</code>.
 *
 * @author scar Gonzlez Fernndez <ogonzalez@igalia.com>

From source file org.gitools.analysis.groupcomparison.format.math33Preview.Combinations.java

/**
 * Utility to create <a href="http://en.wikipedia.org/wiki/Combination">
 * combinations</a> {@code (n, k)} of {@code k} elements in a set of
 * {@code n} elements.
 *
 * @version $Id$

From source file org.smartfrog.services.deployapi.engine.JobRepository.java

/**
 * This class remembers what got deployed by whom. It retains weak references to
 * running apps, for easy purging.
 * <p/>
 * This class *must* be thread safe
 * <p/>

From source file com.flexive.shared.cmis.search.CmisResultRow.java

/**
 * <strong>Disclaimer: this API is part of the CMIS interface and is not yet considered stable.</strong><br/><br/>
 *
 * A row in a {@link CmisResultSet}. The column values are boxed in {@link CmisResultValue} objects.
 * <p>
 * You can iterate over the columns of this row using it as an iterator, or access the columns directly: