Class cryptiX.utils.NullEnumeration
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class cryptiX.utils.NullEnumeration

java.lang.Object
   |
   +----cryptiX.utils.NullEnumeration

public final class NullEnumeration
extends Object
implements Enumeration
This class implements the null Enumeration, or an enumeration whose hasMoreElements() returns always false, and nextElement always throws NoSuchElementException.
See Also:
Enumeration

Constructor Index

 o NullEnumeration()

Method Index

 o hasMoreElements()
Returns always false.
 o nextElement()
Throws always NoSuchElementException

Constructors

 o NullEnumeration
  public NullEnumeration()

Methods

 o hasMoreElements
  public boolean hasMoreElements()
Returns always false.
 o nextElement
  public Object nextElement()
Throws always NoSuchElementException

All Packages  Class Hierarchy  This Package  Previous  Next  Index