java.util
public
interface
java.util.Enumeration<E>
An Enumeration is used to sequence over a collection of objects.
Known Indirect Subclasses
StringTokenizer |
String tokenizer is used to break a string apart into tokens. |
Summary
Details
Public Methods
public
boolean
hasMoreElements()
Returns if this Enumeration has more elements.
Returns
- true if there are more elements, false otherwise
public
E
nextElement()
Returns the next element in this Enumeration.
Returns
- the next element in this Enumeration