List of usage examples for java.lang Iterable interface-usage
From source file org.commonjava.maven.atlas.graph.model.EProjectCycle.java
public class EProjectCycle implements Iterable<ProjectRelationship<?, ?>>, EProjectRelationshipCollection { private static final long serialVersionUID = 1L; private List<ProjectRelationship<?, ?>> relationships = new ArrayList<ProjectRelationship<?, ?>>();
From source file org.norvelle.addressdiscoverer.parse.unstructured.ForwardsFlattenedDocumentIterator.java
/**
* Given a standard tree-shaped JSoup Document, create a flattened list of
* final elements (specifically, textual elements and emails) that can be
* navigated from last to first in order to extract information for building
* Individuals.
*
From source file net.sf.ufsc.ServiceLoader.java
/**
* A simple service-provider loading facility.
*
* <p> A <i>service</i> is a well-known set of interfaces and (usually
* abstract) classes. A <i>service provider</i> is a specific implementation
* of a service. The classes in a provider typically implement the interfaces
From source file nz.govt.natlib.ndha.manualdeposit.metadata.UserData.java
public final class UserData implements Serializable, Iterable<IndigoUser> { /** * */ private static final long serialVersionUID = 1682896060935300190L;
From source file forge.card.mana.ManaCost.java
/**
* <p>
* CardManaCost class.
* </p>
*
* @author Forge
From source file org.cosmo.common.net.StringTokens.java
public class StringTokens implements Iterator<String>, Iterable<String> { public static final int NValue = Integer.MAX_VALUE; public static final char[] CommaSeparatorChar = new char[] { ',' }; public static final char[] ColonSeparatorChar = new char[] { ':' }; public static final char[] SlahSeparatorChar = new char[] { '/' };
From source file nz.govt.natlib.ndha.manualdeposit.search.SearchAttributeCollection.java
public class SearchAttributeCollection implements Iterable<LabelTextPair> { private final static Log LOG = LogFactory.getLog(SearchAttributeCollection.class); private final List<SruIndex> indices = new ArrayList<SruIndex>(); private final List<LabelTextPair> theSearchFields = new ArrayList<LabelTextPair>(); private final ILSQueryType.eServerType searchType;
From source file org.spout.api.model.ModelFace.java
/** * Represents a Triangle for a model face * */ public class ModelFace implements Iterable<Vertex> {
From source file org.polymap.core.runtime.ListenerList.java
/**
* Thread-safe implementation of a listener list.
* <p/>
* This listener list supports adjustable listener comparators. A listener comparator
* decides if any two listeners are "dublicates". Dublicates are not added to the list.
* There are {@link #EQUALITY} and {@link #IDENTITY} as default comparators.
From source file org.spout.api.model.mesh.MeshFace.java
/** * Represents a Triangle for a model face * */ public class MeshFace implements Iterable<Vertex> {