The EnumWrapper class of the com.ms.xml.util package is a simple implementation of the Enumeration interface. The EnumWrapper object generates a list of objects and accesses them through calls to the nextElement method.
public class EnumWrapper implements Enumeration { // Constructors public EnumWrapper(Object o); // Methods public boolean hasMoreElements(); public Object nextElement(); }