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.gbif.utils.file.csv.CSVReader.java

/**
 *
 */
public class CSVReader implements ClosableReportingIterator<String[]>, Iterable<String[]> {

    private static final Logger LOG = LoggerFactory.getLogger(CSVReader.class);

From source file PalidromeArray.java

public class PalidromeArray implements Iterable<BigInteger> {
    protected static final BigInteger TWO = BigInteger.valueOf(2);
    protected ConcurrentHashMap<BigInteger, BigInteger> array;
    protected BigInteger totalLength, halfLength;
    protected boolean isEven = true;

From source file fr.amap.lidar.format.jleica.LPointShotExtractor.java

/**
 *
 * @author Julien Heurtebize
 */
public class LPointShotExtractor implements Iterable<LShot> {

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

/**
 * Represents a list of property values.
 */
public class PropertyValueList
        implements Iterable<PropertyValue>, Serializable, Value, Comparable<PropertyValueList> {

From source file com.tlabs.eve.api.character.TrainingQueue.java

public class TrainingQueue implements Iterable<SkillInTraining>, Serializable {

    private static final long serialVersionUID = 7093542650285855582L;

    private final List<SkillInTraining> training;

From source file com.cloudera.kitten.lua.LuaWrapper.java

/**
 * A wrapper object to make it nicer to work with LuaTables.
 */
public class LuaWrapper implements Iterable<LuaPair> {

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

From source file delfos.rs.contentbased.vsm.booleanvsm.BooleanFeaturesTransformation.java

/**
 * Objeto que almacena una transformacin de caractersticas y valores a un vector de ocurrencias.
 *
 * @author jcastro-inf ( https://github.com/jcastro-inf )
 *
 * @version 10-Octubre-2013

From source file mulavito.graph.AbstractLayerStack.java

/**
 * The stack of multiple layers that is shown in the GUI.
 * 
 * @author Michael Duelli
 * @author Julian Ott
 * 

From source file com.nofuturecorp.www.connector.DataSet.java

/**
 * Class to store the extracted rows of a query. The elements can be extracted from various different ways, 
 * similar to a list but also as a cursor (like an Android) or other iterable elements
 * @author Juan Jos Longoria Lpez
 * @version 1.0
 */

From source file com.daveoxley.cbus.Response.java

/**
 *
 * @author Dave Oxley <dave@daveoxley.co.uk>
 */
public class Response implements Iterable<String> {
    private final static Log log = LogFactory.getLog(Response.class);