List of usage examples for java.lang Iterable interface-usage
From source file com.cloudera.oryx.kmeans.common.Centers.java
/** * Represents a collection of {@code Vector} instances that act as the centers of * a set of clusters, as in a k-means model. */ public final class Centers implements Iterable<RealVector> {
From source file cz.incad.kramerius.k5indexer.IndexDocs.java
/** * * @author alberto */ public class IndexDocs implements Iterable<Object> {
From source file com.basho.riak.client.query.BucketKeyMapReduce.java
/**
* Map/Reduce over a set of bucket/key/keydata inputs.
* @author russell
* @see IRiakClient#mapReduce()
*/
From source file org.nuxeo.ecm.automation.client.jaxrs.ExecutionDependencies.java
public class ExecutionDependencies implements Iterable<Dependency> { protected final List<Dependency> dependencies = new ArrayList<Dependency>(); public void add(DependencyType type, String token) { dependencies.add(new Dependency(type, token));
From source file org.polymap.rhei.batik.PanelPath.java
/** * * * @author <a href="http://www.polymap.de">Falko Brutigam</a> */ public class PanelPath implements Iterable<PanelIdentifier> {
From source file de.micromata.tpsb.doc.parser.ParserResult.java
/** * Ergebnis eines Parser-Laufs. Abbildung aller fuer einen Report relevanten AST Informationen * * @author Stefan Sttzer (s.stuetzer@micromata.com) */ public class ParserResult implements Iterable<FileInfo>, Serializable {
From source file cat.albirar.framework.sets.registry.ISetRegistry.java
/**
* Contract for registry of {@link INamedSet named sets}.
* Use the {@link SetRegistryFactory factory} and access to global JVM registry or thread local registry.
*
* @see SetRegistryFactory
* @author Octavi Forns ofornes@albirar.cat
From source file org.springsource.ide.eclipse.commons.internal.core.commandhistory.ValidProjectFilter.java
/**
* Utility class, provides a method to decide whether a given command history
* Entry belongs to a project with the given nature.
* <p>
* The CommandHistory stores history items that may no longer be valid (because
* the associated project has been closed/renamed/deleted etc.
From source file pl.edu.icm.cermine.evaluation.tools.NlmIterator.java
public class NlmIterator implements Iterable<NlmPair> { private int curItemIdx = -1; private List<NlmPair> entries = null;
From source file org.apache.commons.rng.examples.stress.GeneratorsList.java
/** * List of generators. */ public class GeneratorsList implements Iterable<UniformRandomProvider> { /** List. */ private final List<UniformRandomProvider> list = new ArrayList<UniformRandomProvider>();