public class MultiIterator<T> extends Object implements Iterator<Object[]>
e.g. (1,2) and (100, 200, 300) are expanded to (1, 100) (1, 200) (1, 300) (2, 100) (2, 200) (2, 300)
MultiIterator(List<? extends Iterable<T>> iterables)
boolean
hasNext()
T[]
next()
void
remove()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public MultiIterator(List<? extends Iterable<T>> iterables)
public boolean hasNext()
hasNext
Iterator<Object[]>
public T[] next()
next
public void remove()
remove
Copyright © 2007–2015 Mysema Ltd. All rights reserved.