List of usage examples for java.lang Iterable interface-usage
From source file com.griddynamics.jagger.providers.CsvProvider.java
/** * @author Nikolay Musienko * Date: 22.04.13 */ public class CsvProvider<T> implements Iterable<T>, Serializable {
From source file org.jcurl.math.CurveCombined.java
/**
* Combined curve. Becomes more and more similar to {@link List} with some
* restrictions and additions.
*
* @param <T>
* type of the parts to be combined.
From source file com.kodemore.collection.KmJsonList.java
public class KmJsonList implements Iterable<Object> { //################################################## //# instance creation //################################################## public static KmJsonList parse(String json) {
From source file org.sonatype.nexus.repository.httpbridge.internal.HttpPartIteratorAdapter.java
/** * Servlet multipart-payload adapter. * * @since 3.0 */ class HttpPartIteratorAdapter implements Iterable<PartPayload> {
From source file Tree.java
/** * TreeSet and TreeMap are both Balanced Trees that don't allow duplicate keys. * This class is designed to provide a generic tree that allows duplicates. */ public class Tree<T extends Tree<T>> implements Collection<T>, RandomAccess, Iterable<T> { protected CopyOnWriteArrayList<T> subtrees;
From source file com.cognifide.qa.bb.aem.dialog.classic.field.tags.AemTags.java
/** * Tags window in a AemDialog. */ @PageObject @Frame("$cq") @DialogComponent("tags")
From source file org.archive.jbs.arc.ArcReader.java
/**
* Convenience wrapper around the (W)ARC readers which allows for
* simple iteration through an (W)ARC file, returning a series of
* ArchiveRecordProxy objects.
*
* This is not a general purpose (W)ARC reading class. It is tailored
From source file org.n52.io.response.OutputCollection.java
public abstract class OutputCollection<T> implements Iterable<T> { private final List<T> items; protected OutputCollection() { this.items = new ArrayList<>();
From source file de.m0ep.canvas.Pagination.java
/**
* Class to navigate through canvas pagination
*
* @author Florian Mller
*
* @param <T>
From source file br.com.esign.logistics.core.Route.java
/** * * @author gustavomunizdocarmo */ @Embedded public class Route implements Comparable<Route>, Iterable<Route> {