List of usage examples for java.util Iterator interface-usage
From source file eu.stratosphere.nephele.executiongraph.ExecutionGraphIterator.java
/**
* This class provides an implementation of the {@link Iterator} interface which allows to
* traverse an execution graph and visit every reachable vertex exactly once. The order
* in which the vertices are visited corresponds to the order of their discovery in a depth first
* search.
* <p>
From source file fr.gael.dhus.search.SearchResult.java
/** * @author pidancier * */ public class SearchResult implements Iterator<SolrDocument> { private static Log logger = LogFactory.getLog(SearchResult.class);
From source file eu.stratosphere.nephele.managementgraph.ManagementGraphIterator.java
/**
* This class provides an implementation of the {@link java.util.Iterator} interface which allows to
* traverse a management graph and visit every reachable vertex exactly once. The order
* in which the vertices are visited corresponds to the order of their discovery in a depth first
* search.
* <p>
From source file com.joyent.manta.client.MantaDirectoryListingIterator.java
import static com.joyent.manta.client.MantaObjectResponse.DIRECTORY_RESPONSE_CONTENT_TYPE; import static com.joyent.manta.util.MantaUtils.formatPath; /** * <p>Class that wraps the paging of directory listing in Manta to a single * continuous iterator.</p>
From source file org.xwiki.notifications.internal.email.NotificationUserIterator.java
/**
* Iterator that retrieve all users of the current wiki interested in the notifications emails at the specified
* interval.
*
* @version $Id: 6ce0cb4e56abef2c34b920daab458e40aff702bb $
* @since 9.5RC1
From source file edu.cornell.med.icb.goby.alignments.AbstractAlignmentReader.java
/**
* Abstract class for reading Goby compact alignments.
*
* @author Fabien Campagne
* Date: May 20, 2009
* Time: 6:23:26 PM
From source file org.apache.olingo.client.core.communication.response.batch.ODataBatchResponseManager.java
/** * Batch response manager class. */ public class ODataBatchResponseManager implements Iterator<ODataBatchResponseItem> { /**
From source file WrapperIterator.java
/**
* An Iterator that returns the elements of a specified array, or other
* iterators etc. The collection of objects returned depends on the
* constructor used.
*
* Based on similar Enumerator code by boucherb@users
From source file WrapperIterator.java
/**
* An Iterator that returns the elements of a specified array, or other
* iterators etc. The collection of objects returned depends on the
* constructor used.<p>
*
* Based on similar Enumerator code by boucherb@users
From source file com.celements.iterator.XObjectIterator.java
/** * Iterator class * @author Philipp Buser * */ public class XObjectIterator implements Iterator<BaseObject>, Iterable<BaseObject> {