List of usage examples for java.util Iterator interface-usage
From source file dk.statsbiblioteket.doms.integration.summa.SummaRecordIterator.java
/** * @author Thomas Skou Hansen <tsh@statsbiblioteket.dk> */ class SummaRecordIterator implements Iterator<Record> { private static final Log log = LogFactory.getLog(SummaRecordIterator.class);
From source file org.owasp.jbrofuzz.core.net.MACAddrFuzzer.java
/**
* <p>A Media Access Control address (MAC address) fuzzer is an iterator
* for MAC addresses.</p>
*
* <p>For larger values and further customisation, you can use the
* FuzzerBigInteger class, in org.owasp.jbrofuzz.core.</p>
From source file com.hpe.application.automation.tools.octane.tests.TestResultIterator.java
public class TestResultIterator implements Iterator<JUnitTestResult> { private Reader input; private XMLEventReader reader; private LinkedList<JUnitTestResult> items = new LinkedList<JUnitTestResult>(); private boolean closed;
From source file org.curriki.xwiki.plugin.lucene.ResourcesSearchCursor.java
/** Simple cursor class to push to zero the contents of the velocity search-result tool. * */ public class ResourcesSearchCursor implements Iterator { private Map<String, String> requestDefaults = Collections.EMPTY_MAP; public ResourcesSearchCursor() {
From source file edu.brown.utils.UniqueCombinationIterator.java
/** * @author pavlo * @param <E> */ public class UniqueCombinationIterator<E> implements Iterator<Set<E>> { private static final Logger LOG = Logger.getLogger(UniqueCombinationIterator.class);
From source file com.oltpbenchmark.benchmarks.auctionmark.util.UserIdGenerator.java
public class UserIdGenerator implements Iterator<UserId> { private final int numClients; private final Integer clientId; private final int usersPerItemCounts[]; private final int minItemCount;
From source file org.eclipse.smila.connectivity.framework.crawler.web.WebSiteIterator.java
/** * The Class WebSiteIterator. * */ public class WebSiteIterator implements Iterator<IndexDocument> {
From source file org.xcmis.search.query.plan.QueryExecutionPlan.java
/** * One step from query execution plan. */ public abstract class QueryExecutionPlan implements Iterator<QueryExecutionPlan> { /** The set of named selectors (e.g., tables) that this node deals with. */
From source file StringTokenizer.java
/**
* The string tokenizer class allows an application to break a string into
* tokens.
* More information about this class is available from <a target="_top" href=
* "http://ostermiller.org/utils/StringTokenizer.html">ostermiller.org</a>.
* <p>
From source file org.openvpms.archetype.rules.workflow.FreeSlotIterator.java
/** * An iterator over free slots for a schedule. * * @author Tim Anderson */ class FreeSlotIterator implements Iterator<Slot> {