List of usage examples for java.lang Iterable interface-usage
From source file com.esri.gpt.control.webharvest.client.waf.FtpFileIterable.java
/** * FTP file iterable. */ class FtpFileIterable implements Iterable<Resource> { protected IterationContext iterationContext;
From source file com.github.jknack.css.Rule.java
public class Rule implements Iterable<Selector> { private final LinkedList<Selector> selectors = new LinkedList<Selector>(); private final Map<String, Expression> properties = new LinkedHashMap<String, Expression>();
From source file org.ESLM.Model.ProtoLesson.java
public class ProtoLesson extends Observable implements Iterable<Instruction>, JSONSerializable { private String title; private ArrayList<Instruction> exercises; public ProtoLesson(String title) {
From source file com.basetechnology.s0.agentserver.OutputHistory.java
public class OutputHistory implements Iterable<OutputRecord> { public final static int MAX_HISTORY_RECORDS = 100; public int maxHistoryRecords; public int sequenceNumber; public List<OutputRecord> outputHistory;
From source file com.opengamma.util.csv.CSVDocumentReader.java
/**
* Provides an iterator for reading a CSV file that return each row as a fudge message
* <p>
* The first row of the CSV document is assumed to be the column headers.
* The FudgeMessage returned by the iterator has the column headers as field names
*/
From source file de.kasoki.jfeedly.model.Entries.java
/** * Representation model of the "/v3/entries" API call * @author Christopher Kaster */ public class Entries implements Iterable<Entry> { private ArrayList<Entry> entries;
From source file com.buaa.cfs.utils.GSet.java
/**
* A {@link GSet} is set, which supports the {@link #get(Object)} operation. The {@link #get(Object)} operation uses a
* key to lookup an element.
* <p>
* Null element is not supported.
*
From source file io.neba.core.resourcemodels.registration.MappableTypeHierarchy.java
/**
* Represents all type names to which a
* {@link io.neba.api.annotations.ResourceModel} may apply.
* <br />
* Iterates over the resource type hierarchy of a {@link Resource},
* followed by the {@link Node} type hierarchy.
From source file org.springframework.boot.devtools.classpath.ClassPathFolders.java
/**
* Provides access to entries on the classpath that refer to folders.
*
* @author Phillip Webb
* @since 1.3.0
*/
From source file org.expath.httpclient.HeaderSet.java
/**
* TODO<doc>: ...
*
* TODO: Change this class to a real wrapper around a {@link Header[]} or a
* {@link Collection<Header>}.
*