public class CombiningGenerator<E> extends AbstractList<List<E>>
modCount| Constructor and Description | 
|---|
CombiningGenerator(Collection<E> elements)
Creates a CombiningGenerator. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
List<E> | 
get(int index)  | 
static void | 
main(String[] args)
Ad hoc test. 
 | 
static <T> CombiningGenerator<T> | 
of(Collection<T> elements)
Creates a CombiningGenerator, inferring the type from the argument. 
 | 
int | 
size()  | 
add, add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set, subListaddAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toStringpublic CombiningGenerator(Collection<E> elements)
elements - Elements to iterate overpublic static <T> CombiningGenerator<T> of(Collection<T> elements)
T - Element typeelements - Elements to iterate overpublic int size()
public static void main(String[] args)
args - ignored