| |
|
| java.lang.Object org.mandarax.util.MultipleCollectionIterator
MultipleCollectionIterator | public class MultipleCollectionIterator implements Iterator(Code) | | Iterator for a set of sets. The iterator iterats
over all possible combinations.
author: Jens Dietrich version: 3.4 <7 March 05> since: 1.2 |
Method Summary | |
public boolean | hasNext() Indicates whether there is a next object. | public Object | next() Get the next object. | public void | remove() Remove elements is not supported. |
MultipleCollectionIterator | public MultipleCollectionIterator(Collection[] collections)(Code) | | Constructor.
Parameters: collections - java.util.Collection[] |
hasNext | public boolean hasNext()(Code) | | Indicates whether there is a next object.
boolean |
next | public Object next()(Code) | | Get the next object. The next object is a vector containing exactly one
object from each input collection.
java.lang.Object |
remove | public void remove()(Code) | | Remove elements is not supported.
|
|
|
|