Name

java.util.Enumeration

Synopsis

This interface is identical to the Enumeration interface of the J2SE. Classes that implement this interface allow the programmer to iterate through a series of values, such as the keys or elements in a hashtable.

public interfaceEnumeration {
   public boolean hasMoreElements();
   public Object nextElement();
}

Get Wireless Java now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.