All Packages Class Hierarchy This Package Previous Next Index
Class rpi.goldsd.container.EmptyEnumeration
java.lang.Object
|
+----rpi.goldsd.container.EmptyEnumeration
- public class EmptyEnumeration
- extends Object
- implements Enumeration
The EmptyEnumeration class provides a default enumeration
that contains no elements. Currently, this class is used in the
Table class by the elements() method that expects
a single argument.
- Version:
- 1.0, 4/16/98
- Author:
- David Goldschmidt
- See Also:
- Table
-
EmptyEnumeration()
-
-
hasMoreElements()
- Returns false to indicate no elements exist in this enumeration.
-
nextElement()
- Returns null.
EmptyEnumeration
public EmptyEnumeration()
hasMoreElements
public boolean hasMoreElements()
- Returns false to indicate no elements exist in this enumeration.
- Returns:
- false to indicate no elements exist in this enumeration.
nextElement
public Object nextElement()
- Returns null.
- Returns:
- null.
All Packages Class Hierarchy This Package Previous Next Index