Example usage for java.lang Iterable interface-usage

List of usage examples for java.lang Iterable interface-usage

Introduction

In this page you can find the example usage for java.lang Iterable interface-usage.

Usage

From source file org.apache.maven.graph.effective.EProjectCycle.java

public class EProjectCycle implements Iterable<ProjectRelationship<?>>, EProjectRelationshipCollection {

    private static final long serialVersionUID = 1L;

    private List<ProjectRelationship<?>> participants = new ArrayList<ProjectRelationship<?>>();

From source file org.apache.lens.server.util.ScannedPaths.java

@Slf4j
@Data
@AllArgsConstructor
public class ScannedPaths implements Iterable<String> {
    private final Path path;
    private final String type;

From source file org.swordess.ldap.odm.metadata.entity.EntityMetaData.java

public class EntityMetaData implements Iterable<EntityPropertyMetaData> {

    private static final Log LOG = LogFactory.getLog(EntityMetaData.class);

    private static Map<Class<?>, EntityMetaData> metaDataMap = new HashMap<Class<?>, EntityMetaData>();

From source file edu.usc.goffish.gofs.tools.deploy.GMLPartitionBuilder.java

public class GMLPartitionBuilder implements IPartitionBuilder, Iterable<ISerializablePartition>, Closeable {

    private final IGraphComponentizer _partitionComponentizer;

    private final Path _templatePath;
    private final List<Path> _instancePaths;

From source file com.qcadoo.commons.functional.LazyStream.java

/**
 * Infinite, lazy evaluated stream containing value of any arbitrary type. Stream will be immutable if their elements are
 * immutable.
 * 
 * HashCode & Equality: Behaviour of equals and hashCode depends on the behaviour of these two methods within element and also
 * passed induction function. If passed function doesn't override equals/hashCode, LazyStream.equals will return false for the 2

From source file edu.umn.msi.tropix.proteomics.conversion.Scan.java

public class Scan implements Cloneable, Iterable<Peak> {
    public static double DEFAULT_PRECURSOR_MZ = 0.0d;
    public static double DEFAULT_PRECURSOR_INTENSITY = 0.0d;
    public static short DEFAULT_PRECURSOR_CHARGE = 0;

    private short precursorCharge = DEFAULT_PRECURSOR_CHARGE;

From source file com.github.steveash.jg2p.align.Alignment.java

/**
 * Represents one alignment from X to Y.  In the case of running alignment between X to Y the x represents the grapheme
 * and the y represents the phoneme from the training example.  In the inference case, only the X side will be populated
 * and the Y side will be null
 *
 * @author Steve Ash

From source file ivorius.ivtoolkit.rendering.grid.GridQuadCache.java

/**
 * Created by lukas on 20.03.15.
 */
public class GridQuadCache<T> implements Iterable<GridQuadCache.CachedQuadLevel<T>> {
    protected final List<CachedQuadLevel<T>> cachedQuadLevels = new ArrayList<>();

From source file com.modelsolv.kaboom.model.resource.nativeImpl.RDMPropertyCollection.java

class RDMPropertyCollection implements Iterable<RDMProperty> {

    private List<RDMProperty> rdmProperties;

    public RDMPropertyCollection withProperties(CDMProperty... properties) {
        for (CDMProperty property : properties) {

From source file org.omnaest.utils.operation.foreach.Range.java

/**
 * Represents a {@link Range} for {@link Long} values which can be used as {@link Iterable}. The number limits are always
 * included.<br>
 * <br>
 * Example:
 *