List of usage examples for java.lang Iterable interface-usage
From source file de.tudarmstadt.ukp.wikipedia.api.PageQueryIterable.java
/** * An iterable over page objects selected by a query. * @author zesch * */ public class PageQueryIterable implements Iterable<Page> {
From source file eu.amidst.core.datastream.Attributes.java
/** * This class acts as a container of the {@link Attribute} objects of a data set. * <p> See {@code eu.amidst.core.examples.datastream.DataStreamExample} for an example of use. </p> */ public class Attributes implements Serializable, Iterable<Attribute> {
From source file com.insightml.math.types.StatsTable.java
public final class StatsTable<R, C> extends AbstractClass implements Iterable<Entry<R, Cache<C, StatisticalSummary>>> { private RowCache<R, C> cache; StatsTable() {
From source file de.tudarmstadt.ukp.dkpro.core.ngrams.NGramIterable.java
public class NGramIterable<T extends AnnotationFS> implements Iterable<NGram> { List<NGram> nGramList; private NGramIterable(Iterable<T> tokens, int n) { this.nGramList = createNGramList(tokens, n); }
From source file org.apache.ambari.server.serveraction.kerberos.AbstractKerberosDataFileReader.java
/** * AbstractKerberosDataFileReader implements common code to read existing Kerberos data files. * <p/> * This class encapsulates a {@link org.apache.commons.csv.CSVParser} to read a CSV-formatted file. */ public abstract class AbstractKerberosDataFileReader implements Iterable<Map<String, String>> {
From source file org.openvpms.web.component.im.act.ActHierarchyIterator.java
/**
* This class enables supports iteration over the first level of an act hierarchy, optionally filtering child acts.
* e.g, given a hierarchy of:
* <ul>
* <li>event1</li>
* <ul><li>note1</li><li>problem1</li><li>weight1</li></ul>
From source file com.insightml.math.distributions.DiscreteDistribution.java
public final class DiscreteDistribution<T> extends AbstractClass implements IDiscreteDistribution<T>, Iterable<Entry<T, Double>> { private static final long serialVersionUID = -8857716547353316720L; private LinkedHashMap<T, Double> map;
From source file org.springframework.hateoas.Resources.java
/** * General helper to easily create a wrapper for a collection of entities. * * @author Oliver Gierke */ @XmlRootElement(name = "entities")
From source file net.myrrix.batch.common.iterator.sequencefile.SequenceFileDirIterable.java
/**
* <p>{@link Iterable} counterpart to {@link SequenceFileDirIterator}.</p>
*
* @author Sean Owen
* @author Mahout
* @since 1.0
From source file com.cloudera.oryx.rdf.common.example.ExampleSet.java
/**
* Encapsulates a set of {@link Example}s, including derived information about the data set, such
* as the type of each feature and the type of the target.
*
* @author Sean Owen
*/