List of usage examples for java.util Iterator interface-usage
From source file org.dragoneronca.nlp.wol.domain.WolEntityIterator.java
/**
* An iterator over entities of type T.
* <p/>
* It performs a bounding of the results of the queries in order to limit the memory needed to
* iterte them.
*
From source file org.cleverbus.admin.services.log.LogEventParsingIterator.java
/** * Iterates over provided log files, parsing and returning {@link LogEvent}s on demand. */ class LogEventParsingIterator implements Iterator<LogEvent>, Closeable { private final LogParser parser; private final LogParserConfig config;
From source file com.netflix.priam.aws.S3PrefixIterator.java
/** * Class to iterate over prefixes (S3 Common prefixes) upto * the token element in the path. The abstract path generated by this class * is partial (does not have all data). */ public class S3PrefixIterator implements Iterator<AbstractBackupPath> {
From source file org.mule.module.db.internal.result.statement.StatementResultIterator.java
/** * Iterates across all the {@link StatementResult} returned by a {@link Statement} execution. */ public class StatementResultIterator implements Iterator<StatementResult> { public static final int NO_UPDATE_COUNT = -1;
From source file org.norvelle.addressdiscoverer.parse.structured.BackwardsFlattenedDocumentIterator.java
/**
* Given a standard tree-shaped JSoup Document, create a flattened list of
* final elements (specifically, textual elements and emails) that can be
* navigated from last to first in order to extract information for building
* Individuals.
*
From source file org.diorite.utils.collections.arrays.ArrayIterator.java
/** * Iterator implementation for array. * * @param <T> type of array */ public class ArrayIterator<T> implements Iterator<T>, Iterable<T> {
From source file org.netxilia.spi.impl.formula.CellIterator.java
public class CellIterator implements Iterator<CellData> { private final ISheet sheet; private final Iterator<CellReference> referenceIterator; public CellIterator(ISheet sheet, Iterator<CellReference> referenceIterator) { Assert.notNull(sheet);
From source file de.tudarmstadt.ukp.wikipedia.api.PageIterator.java
/**
* An iterator over page objects.
*
* @author zesch
* @author Oliver Ferschke
*
From source file org.diorite.utils.collections.arrays.primitive.NumberIterator.java
/** * Represent Number iterator, this is wrapper for any {@link PrimitiveIterator} */ public class NumberIterator implements Iterator<Number> { /** * Wrapped primitive iterator.
From source file com.puppycrawl.tools.checkstyle.checks.xpath.AttributeAxisIterator.java
/**
* Iterator for an attribute axis of an XPath element. The XPath
* element is a DetailAST. Attributes correspond to bean
* properties of the DetailAST.
* @author Rick Giles
*/