List of usage examples for java.util Iterator interface-usage
From source file org.sakaiproject.cheftool.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 12.0 - May 2017
*/
From source file ArrayIterator.java
/**
*
* An Iterator wrapper for an Object[]. This will
* allow us to deal with all array like structures
* in a consistent manner.
*
From source file ArrayIterator.java
/**
* <p>
* An Iterator wrapper for an Object[]. This will
* allow us to deal with all array like structures
* in a consistent manner.
* </p>
From source file net.sf.morph.reflect.support.ResultSetIterator.java
/**
* An iterator over a ResultSet. SQLExceptions are wrapped in MorphExceptions.
*
* @author Matt Sgarlata
* @since Dec 20, 2004
*/
From source file com.sun.syndication.propono.blogclient.atomprotocol.AtomEntryIterator.java
/** * Atom protocol implementation of BlogClient entry iterator. */ public class AtomEntryIterator implements Iterator { static final Log logger = LogFactory.getLog(AtomEntryIterator.class); private Iterator iterator = null;
From source file com.uber.hoodie.hadoop.RecordReaderValueIterator.java
/**
* Provides Iterator Interface to iterate value entries read from record reader
*
* @param <K> Key Type
* @param <V> Value Type
*/
From source file org.nuxeo.common.utils.FileTreeIterator.java
/** * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> */ public class FileTreeIterator implements Iterator<File> { private final Queue<Iterator<File>> queue = new LinkedList<>();
From source file com.continusec.client.LogEntryIterator.java
/** * An iterator for log entries. */ public class LogEntryIterator implements Iterator<VerifiableEntry> { private ContinusecClient client; private String path;
From source file com.msopentech.odatajclient.engine.communication.request.batch.ODataBatchLineIterator.java
/** * Batch line iterator class. */ public class ODataBatchLineIterator implements Iterator<String> { /**
From source file de.tudarmstadt.ukp.wikipedia.api.CategoryDescendantsIterator.java
/** * An iterator over category objects retrieved by Category.getDescendants() * @author zesch * */ public class CategoryDescendantsIterator implements Iterator<Category> {