This class implements a cartesian product of sets by generating the different combinations among elements. It does not work with the elements themselves, but rather with the element indices, so that the tuples it returns are integer arrays that can be used by the calling application to draw a particular combination from the real sets.
It can be used like an enumeration, going through one combination at a time, until the combinations are exhausted.
@author Andres Quiroz Hernandez
@version 6.0
@deprecated As of jdk1.5.0, the easiest way to implement a cartesian product of arrays or collections is to use nested foreach statements.However, this class has been found to be useful when the number of sets is determined at runtime and thus cannot be coded in nested loops. In the next version of this library the class will be renamed to TupleIndexGenerator to more closely reflect its functionality.