List of usage examples for java.lang Iterable interface-usage
From source file net.ontopia.topicmaps.query.toma.impl.basic.ResultSet.java
/**
* INTERNAL: This is a very simple implementation of a table, which is used to
* represent matching result for TOMA queries.
* <p>
* The underlying data-structure is a {@link Bag}, which allows transparent
* access to unique/duplicate rows.
From source file org.opennms.netmgt.model.discovery.IPPollRange.java
/**
* <p>
* This class is designed to encapsulate the information about an address range
* plus the retry & timeout information. The class is designed so that it
* can return either an {@link java.util.Enumeration enumeration}or an
* {@link java.util.Iterator iterator}to traverse the range of addresses.
From source file com.esri.gpt.control.webharvest.client.ckan.CkanIterator.java
/** * CKAN iterator. */ public class CkanIterator implements Iterable<CkanPackage> { private final CkanConfig config;
From source file com.unboundid.scim2.common.Path.java
/**
* This class represents a path to one or more JSON values that are the targets
* of a SCIM PATCH operation. A path may also be used to describe which JSON
* values to get or set when manipulating SCIM resources using the
* {@link GenericScimResource} class.
*/
From source file org.diorite.material.data.drops.PossibleDrops.java
public class PossibleDrops implements Iterable<PossibleDrop> { protected final List<PossibleDrop> possibleDrops = new CopyOnWriteArrayList<>(); public PossibleDrops(final PossibleDrop basic) { Validate.notNull(basic, "Basic drop can't be null."); this.possibleDrops.add(basic);
From source file com.cloudera.oryx.rdf.common.tree.DecisionForest.java
/**
* An ensemble classifier based on many {@link DecisionTree}s.
*
* @author Sean Owen
* @see DecisionTree
*/
From source file org.apache.streams.data.moreover.MoreoverResult.java
public class MoreoverResult implements Iterable<StreamsDatum> { private static final Logger logger = LoggerFactory.getLogger(MoreoverResult.class); private ObjectMapper mapper; private XmlMapper xmlMapper;
From source file dk.netarkivet.harvester.datamodel.HarvestDefinitionDAO.java
/**
* A Data Access Object for harvest definitions.
* This object is a singleton to ensure thread-safety. It
* handles the transformation from harvest definitions to persistent storage.
*
*/
From source file com.celements.iterator.XObjectIterator.java
/** * Iterator class * @author Philipp Buser * */ public class XObjectIterator implements Iterator<BaseObject>, Iterable<BaseObject> {
From source file net.myrrix.common.collection.FastIDSet.java
/**
* Based on Mahout's {@code FastIDSet}.
*
* @author Sean Owen
* @author Mahout
* @since 1.0