List of usage examples for java.util Iterator interface-usage
From source file org.jpublish.page.xml.XMLPageIterator.java
/** Iterator which iterates through the Page objects known to the specified
PageManager.
@author Anthony Eden
@since 1.1
*/
From source file DepthFirstPathTreeIterator.java
/** Depth first iterator which iterates through all files which are decendents
of the specified root path.
@author Anthony Eden
@since 2.0
*/
From source file com.github.stagirs.common.StoreIterator.java
/** * * @author Dmitriy Malakhov */ public class StoreIterator<K> implements Iterator<K> { private ObjectMapper om = new ObjectMapper();
From source file org.sakaiproject.util.EmptyIterator.java
/**
* <p>
* EmptyIterator is an iterator which is empty.
* </p>
* @deprecated use {@link org.apache.commons.collections4.iterators.EmptyIterator} instead, this will be removed after 2.9 - Dec 2011
*/
From source file com.phoenixst.plexus.traversals.GraphStructureIterator.java
/**
* An <code>Iterator</code> over the nodes and edges of a
* <code>Graph</code> ordered such that the endpoints of a
* <code>Graph.Edge</code> are always seen before the edge
* itself. This <code>Iterator</code> may be used to build
* a <code>Graph</code> with the same structure as some
From source file org.jpublish.page.filesystem.FileSystemPageIterator.java
/** Iterator which iterates through the Page objects known to the specified
PageManager. This implementation wraps an iterator which returns paths
and loads the Page object for each path.
@author Anthony Eden
@since 1.1
From source file phex.utils.CompoundIterator.java
/** * With the compound iterator it is possible to easily concat different interators * with each other. */ // TODO3 could be replaced by org.apache.commons.collections.iterators.IteratorChain. public class CompoundIterator implements Iterator {
From source file org.sakaiproject.util.EnumerationIterator.java
/**
* <p>
* EnumerationIterator is an iterator over an enumeration.
* </p>
* @deprecated use {@link org.apache.commons.collections4.iterators.EnumerationIterator} instead, this will be removed after 2.9 - Dec 2011
*/
From source file org.apache.ambari.view.hive.resources.uploads.parsers.csv.CSVIterator.java
/** * iterates over the input CSV records and generates Row objects */ class CSVIterator implements Iterator<Row> { private Iterator<CSVRecord> iterator;
From source file BreadthFirstPathTreeIterator.java
/** Breadth first iterator which iterates through all paths which are decendants
of the specified base path. This iterator is used for iterating through
the paths returned by the ServletContext.getResourcePaths() method.
@author Anthony Eden
@since 2.0