List of usage examples for java.lang Iterable interface-usage
From source file org.apache.hama.bsp.BSPMessageBundle.java
/** * BSPMessageBundle stores a group of messages so that they can be sent in batch * rather than individually. * */ public class BSPMessageBundle<M extends Writable> implements Writable, Iterable<M>, BSPMessageBundleInterface<M> {
From source file com.basetechnology.s0.agentserver.AgentInstanceList.java
public class AgentInstanceList implements Iterable<AgentInstance> { List<AgentInstance> agentInstances = new ArrayList<AgentInstance>(); public void add(AgentInstance agentInstance) { agentInstances.add(agentInstance); }
From source file ddf.catalog.util.impl.ResultListIterable.java
/**
* Class used to iterate over batches of {@link Result} objects contained in a
* {@link ddf.catalog.operation.QueryResponse} returned when executing a {@link QueryRequest}. The
* class will fetch new lists of results as needed based on the page size provided until all results
* that match the query have been exhausted. The class guarantees that each {@link List<Result>}
* returned will contain a number of results equal to the page size specified in the
From source file org.owasp.dependencycheck.utils.DependencyVersion.java
/**
* <p>
* Simple object to track the parts of a version number. The parts are contained in a List such that version 1.2.3 will
* be stored as: <code>versionParts[0] = 1;
* versionParts[1] = 2;
* versionParts[2] = 3;
From source file com.github.jknack.amd4j.Module.java
/**
* Hold information about an AMD.
*
* @author edgar.espina
* @since 0.1.0
*/
From source file com.shigengyu.hyperion.core.TransitionConditionSet.java
public class TransitionConditionSet implements Iterable<TransitionCondition> { @Service public static class TransitionConditionSetFactory { private static TransitionConditionSetFactory instance;
From source file org.gbif.occurrence.util.CSVReader.java
/** * @author markus * */ public class CSVReader implements ClosableIterator<String[]>, Iterable<String[]> { private static final Logger LOG = LoggerFactory.getLogger(CSVReader.class);
From source file de.tuberlin.uebb.jbop.optimizer.methodsplitter.VarList.java
/**
* The Class VarList.
*
* This is a special List for {@link Var}s.
*
* @author Christopher Ewest
From source file eu.crisis_economics.abm.contracts.stocks.StockOwnershipTracker.java
/** * @author phillips */ public final class StockOwnershipTracker implements Iterable<StockHolder> { private final String stockUniqueName;
From source file cz.autoclient.league_of_legends.maps.GameObjectMap.java
/** * * @author Jakub * @param <T> GameObject is any object loaded from */ public abstract class GameObjectMap<T extends GameObject> extends DataLoader