List of usage examples for java.lang Iterable interface-usage
From source file com.basho.riak.client.query.BucketMapReduce.java
/**
* Map/Reduce over a bucket, optionally add Key Filters to narrow the inputs.
* @author russell
*
* @see IRiakClient#mapReduce(String)
*/
From source file org.cyclop.model.CqlQueryResult.java
/** @author Maciej Miklas */ public class CqlQueryResult implements Iterable<Row>, Serializable { public final static CqlQueryResult EMPTY = new CqlQueryResult(); @NotNull @Valid
From source file com.opengamma.analytics.financial.greeks.PDEResultCollection.java
/** * */ //TODO GRID_PV and GRID_IMPLIED_VOL don't belong in here public class PDEResultCollection implements Iterable<Pair<Greek, double[]>> { /** The present value for each strike value on the space grid at expiry */
From source file com.intel.cosbench.config.Work.java
/**
* The model class mapping to "work" in configuration xml with following form:
* <work type="type" workers="workers" division="division"
* rampup="rampup" rampdown="rampdown" runtime="runtime" config="config" ... />
*
* @author ywang19, qzheng7
From source file com.thruzero.common.core.map.StringMap.java
/**
* A {@code Map} of {@code String} objects with convenience functions to get and put values as {@code String},
* {@code int}, {@code boolean}, {@code Date}, etc.
*
* @author George Norman
*/
From source file de.escalon.hypermedia.spring.uber.AbstractUberNode.java
@JsonInclude(Include.NON_EMPTY) public List<UberNode> getData() { return data; } public void addData(UberNode item) {
From source file org.apache.nutch.parse.ParseResult.java
/**
* A utility class that stores result of a parse. Internally
* a ParseResult stores <{@link Text}, {@link Parse}> pairs.
* <p>Parsers may return multiple results, which correspond to parts
* or other associated documents related to the original URL.</p>
* <p>There will be usually one parse result that corresponds directly
From source file com.kylinolap.storage.hbase.HBaseClientKVIterator.java
/** * @author yangli9 * */ public class HBaseClientKVIterator implements Iterable<Pair<ImmutableBytesWritable, ImmutableBytesWritable>>, Closeable {
From source file com.kylinolap.storage.hbase.HBaseKeyValueIterator.java
/** * @author yangli9 * */ public class HBaseKeyValueIterator implements Iterable<Pair<ImmutableBytesWritable, ImmutableBytesWritable>>, Closeable {
From source file org.carewebframework.api.ManifestIterator.java
/** * Service that provides access to manifests for all components on the class path. */ public class ManifestIterator implements ApplicationContextAware, Iterable<Manifest> { private static class ManifestEx extends Manifest {