Example usage for java.util Iterator interface-usage

List of usage examples for java.util Iterator interface-usage

Introduction

In this page you can find the example usage for java.util Iterator interface-usage.

Usage

From source file di.uniba.it.tee2.wiki.WikipediaDumpIterator.java

/**
 *
 * @author Piero Molino
 */
public class WikipediaDumpIterator implements Iterator<WikiPage> {

From source file LinkedIterator.java

public class LinkedIterator implements Iterator {
    private List iterators;
    private int cur;

    public LinkedIterator() {
        this.iterators = new ArrayList();

From source file org.apache.cayenne.ashwood.graph.DepthFirstSearch.java

/**
 * @since 3.1
 */
public class DepthFirstSearch<E> implements Iterator<E> {

    protected DigraphIteration<E, ?> factory;

From source file com.projity.grouping.core.transform.filtering.PredicatedNodeFilterIterator.java

/**
 *
 */
public interface PredicatedNodeFilterIterator extends Iterator {
    void setPredicate(Predicate predicate);

From source file org.apache.tinkerpop.gremlin.process.traversal.Traversal.java

/**
 * A {@link Traversal} represents a directed walk over a {@link Graph}.
 * This is the base interface for all traversal's, where each extending interface is seen as a domain specific language.
 * For example, {@link GraphTraversal} is a domain specific language for traversing a graph using "graph concepts" (e.g. vertices, edges).
 * Another example may represent the graph using "social concepts" (e.g. people, cities, artifacts).
 * A {@link Traversal} is evaluated in one of two ways: iterator-based OLTP or {@link GraphComputer}-based OLAP.

From source file org.deeplearning4j.text.invertedindex.LuceneInvertedIndex.java

/**
 * Lucene based inverted index
 *
 * @author Adam Gibson
 */
public class LuceneInvertedIndex<T extends SequenceElement>

From source file Utils.java

abstract class CheckedIterator<E> implements Iterator<E> {

    static final Object WAITING = new Object();

    private final Iterator it;

From source file org.apache.cayenne.ashwood.graph.StrongConnection.java

/**
 * @since 3.1
 */
public class StrongConnection<E, V> implements Iterator<Collection<E>> {

    private DigraphIteration<E, V> digraph;

From source file org.apache.accumulo.core.clientImpl.OfflineIterator.java

class OfflineIterator implements Iterator<Entry<Key, Value>> {

    static class OfflineIteratorEnvironment implements IteratorEnvironment {

        private final Authorizations authorizations;
        private AccumuloConfiguration conf;

From source file net.mlw.vlh.adapter.jdbc.dynabean.fix.ResultSetIterator.java

/**
 * <p>Implementation of <code>java.util.Iterator</code> returned by the
 * <code>iterator()</code> method of {@link ResultSetDynaClass}.  Each
 * object returned by this iterator will be a {@link DynaBean} that
 * represents a single row from the result set being wrapped.</p>
 *