January 2002
Intermediate to advanced
264 pages
8h 3m
English
java.util.Enumeration
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 booleanhasMoreElements(); public ObjectnextElement(); }
Read now
Unlock full access