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 org.apache.mahout.math.hadoop.stochasticsvd.qr.QRLastStep.java

/**
 * Second/last step of QR iterations. Takes input of qtHats and rHats and
 * provides iterator to pull ready rows of final Q.
 * 
 */
public class QRLastStep implements Closeable, Iterator<Vector> {

From source file ReadOnlyIterator.java

/**
 * Protects an given iterator by preventing calls to remove().
 *
 * @author Thomas Morgner
 */
public class ReadOnlyIterator implements Iterator {

From source file org.sakaiproject.search.util.HTMLParser.java

/**
 * @author ieb
 */
public class HTMLParser implements Iterator<String> {
    private static Log log = LogFactory.getLog(HTMLParser.class);

From source file gemlite.core.internal.support.hotdeploy.scanner.ScannerIterator.java

public class ScannerIterator implements Iterator<ScannerIteratorItem> {

    //private static String INDEX_DEF_SUFFIX = System.getProperty("gemlite.core.index-def-suffix", ".def");

    private final static String class_suffix = ".class";
    private JarInputStream jarInputStream;

From source file org.apache.sling.engine.impl.parameters.RequestPartsIterator.java

/**
 * Contains a Lazy iterator of Parts from the request stream loaded as the request is streamed using the Commons FileUpload API.
 */
public class RequestPartsIterator implements Iterator<Part> {
    private static final Logger LOG = LoggerFactory.getLogger(RequestPartsIterator.class);

From source file org.easyrec.utils.spring.store.ResultSetIteratorMysql.java

/**
 * Iterator that allows bulkwise fetching of large result sets for mysql.
 * <p/>
 * <p>
 * Example: <br />
 * <p/>

From source file com.sm.store.server.QueryIterator.java

public class QueryIterator implements Iterator {
    private static final Log logger = LogFactory.getLog(QueryIterator.class);
    //Predicate condition;
    boolean tableScan;
    RemoteStore remoteStore;
    Stack<Predicate> predicateStack = new Stack<Predicate>();

From source file net.sourceforge.jabm.VariableBindingsIterator.java

class VariableBindingsIterator implements Iterator<Map<String, String>> {

    protected Map<String, VariableRange> variableRanges;

    protected ArrayList<String> variables;

From source file org.tupelo_schneck.electric.ted.ImportIterator.java

public class ImportIterator implements Iterator<Triple> {
    private final TimeZone timeZone;
    private final boolean useVoltage;
    private final byte mtu;
    private final InputStream urlStream;
    private final Base64 base64 = new Base64();

From source file ArrayRangeIterator.java

/**
 * Iterator class for values contained in an array range. This type of iterator
 * can be used for any contiguous range of items in an object array.
 *
 * @author Dennis M. Sosnoski
 * @version 1.1