| java.util.Enumeration
Enumeration | public interface Enumeration (Code) | | An Enumeration is used to sequence over a collection of objects.
See Also: Hashtable See Also: Properties See Also: Vector version: 1.0 |
Method Summary | |
public boolean | hasMoreElements() Answers if this Enumeration has more elements. | public E | nextElement() Answers the next element in this Enumeration. |
hasMoreElements | public boolean hasMoreElements()(Code) | | Answers if this Enumeration has more elements.
true if there are more elements, false otherwise See Also: Enumeration.nextElement |
|
|