List of usage examples for java.util Iterator interface-usage
From source file org.owasp.jbrofuzz.core.FuzzerBigInteger.java
/**
* <p>
* FuzzerBigInteger implements a fuzzer iterator using BigInteger; as a
* result, iterations are not limited to LONG.MAX_VALUE < 16^16.
* </p>
* <p>
From source file SparseArrayIterator.java
/**
* Iterator class for sparse values in an array. This type of iterator
* can be used for an object array which has references interspersed with
* <code>null</code>s.
*
* @author Dennis M. Sosnoski
From source file org.owasp.jbrofuzz.core.Fuzzer.java
/**
* <p>
* A fuzzer is an iterator that is constructed based on a prototype, carrying
* the payloads and the fuzzer type information.
* </p>
*
From source file org.apache.flink.runtime.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 edu.cornell.med.icb.goby.readers.FastXReader.java
/**
* A reader for <a href="http://en.wikipedia.org/wiki/FASTA_format">FASTA</a>
* or <a href="http://en.wikipedia.org/wiki/FASTQ_format">FASTQ</a> files.
* This reuses the same {@link edu.cornell.med.icb.goby.readers.FastXEntry} over and
* over for reading the file, so don't directly store it. If you need to store the
* resultant FastXEntry object, use the {@link edu.cornell.med.icb.goby.readers.FastXEntry#clone()}
From source file cz.matfyz.oskopek.learnr.data.QuestionIterator.java
/**
* Manages the order of asked questions and the process of updating the question and answer after a answer is submitted.
* Also updates the <code>LimitWatcher</code> and measures the response time.
* <p/>
* Note: the <code>remove()</code> method is not implemented, as it has no sense.
*/
From source file org.apache.hadoop.hive.ql.exec.repl.bootstrap.events.filesystem.BootstrapEventsIterator.java
/**
* Replication layout is from the root directory of replication Dump is
* db
* _external_tables_info
* table1
* _metadata
From source file org.apache.flink.runtime.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 org.apache.camel.dataformat.tarfile.TarIterator.java
/** * The Iterator which can go through the TarArchiveInputStream according to TarArchiveEntry * Based on ZipIterator from camel-zipfile component */ public class TarIterator implements Iterator<Message>, Closeable { static final Logger LOGGER = LoggerFactory.getLogger(TarIterator.class);
From source file LineBreakIterator.java
/**
* An iterator that breaks text into lines. The result is equal to
* BufferedReader.readLine().
*
* @author Thomas Morgner
*/