List of usage examples for java.util Iterator interface-usage
From source file edu.psu.chemxseer.structure.util.ArrayIterator.java
/**
* Implements an {@link java.util.Iterator Iterator} over any array.
*
* The array can be either an array of object or of primitives. If you know that
* you have an object array, the
* {@link org.apache.commons.collections.iterators.ObjectArrayIterator
From source file com.adaptris.util.text.mime.ByteArrayIterator.java
/** * Allows you to iterate over a multipart returning each part as a byte array. * */ public class ByteArrayIterator extends MultipartIterator implements Iterator<byte[]> {
From source file ArrayIterator.java
/**
* An array iterator.
*
* @version <tt>$Revision: 2800 $</tt>
* @author <a href="mailto:jason@planet57.com">Jason Dillon</a>
*/
From source file org.sonar.db.ResultSetIterator.java
/**
* Forward-only {@link java.util.Iterator} over a {@link java.sql.ResultSet}. Rows are
* lazily loaded. The underlying ResultSet must be closed by calling the method
* {@link #close()}
* <p/>
* As a safeguard, the ResultSet is automatically closed after the last element has
From source file org.xwiki.filemanager.internal.reference.DocumentNameSequence.java
/**
* Generates a sequence of document names starting from a given document name and adding a suffix which is either a
* counter, a random number or an {@link UUID}.
*
* @version $Id$
* @since 2.0RC1
From source file org.epnoi.uia.harvester.wikipedia.parse.de.tudarmstadt.ukp.wikipedia.api.CategoryIterator.java
/** * An iterator over category objects. * @author zesch * */ public class CategoryIterator implements Iterator<Category> {
From source file vandy.mooc.common.GenericArrayIterator.java
/**
* Implements an {@link java.util.Iterator Iterator} over any array.
*
* The array can be either an array of object or of primitives. If you know
* that you have an object array, the
* {@link org.apache.commons.collections.iterators.ObjectArrayIterator ObjectArrayIterator}
From source file org.apache.struts2.util.SortIteratorFilter.java
/**
* A bean that takes a source and comparator then attempt to sort the source
* utilizing the comparator. It is being used in SortIteratorTag.
*
* @see org.apache.struts2.views.jsp.iterator.SortIteratorTag
*/
From source file org.apache.ranger.authorization.hbase.ColumnIterator.java
public class ColumnIterator implements Iterator<String> { // TODO write tests for this class private static final Log LOG = LogFactory.getLog(ColumnIterator.class.getName()); Iterator<byte[]> _setIterator; Iterator<KeyValue> _listIterator;
From source file org.zalando.github.spring.pagination.PagingIterator.java
/**
*
* @author jbellmann
*
* @param <E>
*/