List of usage examples for java.lang Iterable interface-usage
From source file de.ailis.usb4java.libusb.DeviceList.java
/**
* List of devices as returned by
* {@link LibUsb#getDeviceList(Context, DeviceList)}.
*
* @author Klaus Reimer (k@ailis.de)
*/
From source file org.duracloud.chunk.ChunkableContent.java
/**
* This class manages the provided content stream by breaking it chunks of the
* size specified by maxChunkSize.
*
* @author Andrew Woods
* Date: Feb 2, 2010
From source file org.jiemamy.utils.collection.IterableNodeList.java
/**
* {@link NodeList}?{@link Iterable}
*
* @version $Id$
* @author daisuke
*/
From source file proteinHypernetwork.interactions.Interaction.java
/** * An interaction between two proteins / protein domains. * * @author Johannes Kster <johannes.koester@tu-dortmund.de> */ public class Interaction extends AbstractListenable
From source file com.stratio.cassandra.index.query.Sort.java
/** * A sorting of fields for a search. * * @author Andres de la Pena <adelapena@stratio.com> */ public class Sort implements Iterable<SortField> {
From source file org.apache.kylin.cube.cuboid.algorithm.generic.lib.Population.java
/** * A collection of chromosomes that facilitates generational evolution. * */ public interface Population extends Iterable<Chromosome> { /**
From source file org.commonjava.cartographer.request.GraphComposition.java
public class GraphComposition implements Iterable<GraphDescription> { private GraphCalculationType calculation; private List<GraphDescription> graphs;
From source file ar.com.zauber.commons.xmpp.roster.SortedRosterIterable.java
/**
* Iterable sobre la lista de contactos de la persona logueada.
* Retorna la lista de forma ordenada lexicograficamente por jid.
*
* @author Juan F. Codagnone
* @since Jun 18, 2009
From source file com.texeltek.accumulocloudbaseshim.TransformIterable.java
public class TransformIterable<From, To> implements Iterable<To> { private final Iterable<From> from; private final Transformer transformer; public TransformIterable(Iterable<From> from, Transformer transformer) {
From source file com.ibm.watson.app.common.tagEvent.TagRecord.java
public abstract class TagRecord implements Iterable<String> { static final protected String dateFormatString = "yyyyMMddHHmmssZ"; static final Gson gson = new GsonBuilder().disableHtmlEscaping().setDateFormat(dateFormatString) .excludeFieldsWithoutExposeAnnotation().setVersion(1.0).create();