List of usage examples for java.lang Iterable interface-usage
From source file com.mgmtp.jfunk.data.generator.data.FieldSet.java
/** * Represents a {@code field-set} element in the "indexed-fields" configuration file (defined by * {@link GeneratorConstants#INDEXED_FIELDS_FILE}). * */ class FieldSet implements Iterable<Field> {
From source file de.tudarmstadt.ukp.dkpro.core.ngrams.util.CharacterNGramStringIterable.java
/**
* Creates a character NGram iterable from a list of tokens.
*
* @author zesch
*
*/
From source file de.dhke.projects.cutil.collections.immutable.GenericImmutableIterable.java
/** * * @author Peter Wullinger <java@dhke.de> */ public class GenericImmutableIterable<T, I extends Iterable<T>> implements Iterable<T>, IDecorator<I> { private final I _backIterable;
From source file org.dswarm.xsd2jsonschema.model.JSObject.java
public class JSObject extends JSElement implements Iterable<JSElement> { private final List<JSElement> list; private final boolean mixed; public JSObject(final String name, final List<JSElement> elements) {
From source file edu.byu.nlp.al.RandomRoundRobinQueue.java
/** * Randomly returns each item in the queue exactly once then loops and repeats in a different random order each * time. This class is thread-safe. */ public class RandomRoundRobinQueue<E> implements Iterable<E> {
From source file com.opengamma.id.ExternalIdSearch.java
/**
* A search request to match external identifiers.
* <p>
* The search combines a set of external identifiers and a matching rule.
* <p>
* This class is mutable and not thread-safe.
From source file com.infinities.nova.response.model.KeyPairs.java
public class KeyPairs implements Iterable<KeyPair>, Serializable { /** * */ private static final long serialVersionUID = 1L;
From source file com.intel.cosbench.config.Mission.java
/**
* The class encapsulates the mission delivering to driver.
*
* @author ywang19, qzheng7
*
*/
From source file org.wikimedia.analytics.kraken.funnel.FunnelPath.java
public class FunnelPath implements Iterable<Pair<FunnelNode, FunnelNode>> { public final int id; private int currentSize; public final ArrayList<FunnelNode> nodes; private FunnelNode Left;
From source file com.addthis.bundle.core.Bundle.java
/** * Represents one "line" or "packet" of data having multiple fields. */ @Pluggable("bundle") public interface Bundle extends Iterable<BundleField>, BundleFormatted, BundleFactory {