public static java.util.Enumeration | fromCompound(java.util.Enumeration[] enums)creates an enumeration from an array of enumeration. The created enumeration
will sequentially enumerate over all elements of each enumeration and skip
null enumeration elements in the array.
return new CompoundEnumeration(enums);
|