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
-
NullEnumeration()
-
-
hasMoreElements()
- Returns always false.
-
nextElement()
- Throws always NoSuchElementException
NullEnumeration
public NullEnumeration()
hasMoreElements
public boolean hasMoreElements()
- Returns always false.
nextElement
public Object nextElement()
- Throws always NoSuchElementException
All Packages Class Hierarchy This Package Previous Next Index