java.util
Interface Enumeration

All Known Implementing Classes:
StringTokenizer

public interface Enumeration

Enumeration object allows you to go through collections one object at a time.

Author:
BB

Method Summary
 boolean hasMoreElements()
           
 Object nextElement()
           
 

Method Detail

hasMoreElements

boolean hasMoreElements()

nextElement

Object nextElement()
Returns:
Returns Object which must be cast appropriately. Returns null if no more objects are available.