java.util
Interface Enumeration<T>

All Known Implementing Classes:
StringTokenizer

public interface Enumeration<T>

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

Author:
BB

Method Summary
 boolean hasMoreElements()
           
 T nextElement()
           
 

Method Detail

hasMoreElements

boolean hasMoreElements()

nextElement

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