cz.cuni.amis.utils
Class Iterators<NODE>
java.lang.Object
cz.cuni.amis.utils.Iterators<NODE>
- Type Parameters:
NODE -
- All Implemented Interfaces:
- Iterator<NODE>
public class Iterators<NODE>
- extends Object
- implements Iterator<NODE>
This class allows you to combine several iterators in the single one allowing you to seamlessly iterate over several
collections at once.
This class behaves as defined by Iterator contract.
- Author:
- Jimmy
|
Constructor Summary |
Iterators(Iterator<NODE>... iterators)
Initialize this class to use "iterators" in the order as they are passed into the constructor. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Iterators
public Iterators(Iterator<NODE>... iterators)
- Initialize this class to use "iterators" in the order as they are passed into the constructor.
- Parameters:
iterators - may contain nulls
hasNext
public boolean hasNext()
- Specified by:
hasNext in interface Iterator<NODE>
next
public NODE next()
- Specified by:
next in interface Iterator<NODE>
remove
public void remove()
- Specified by:
remove in interface Iterator<NODE>
Copyright © 2013 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.