All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class collections.ArrayEnumeration

java.lang.Object
   |
   +----collections.ArrayEnumeration

public final class ArrayEnumeration
extends Object
implements CollectionEnumeration
ArrayEnumeration allows you to use arrays as Enumerations


Constructor Index

 o ArrayEnumeration(Object[])
Build an enumeration that returns successive elements of the array

Method Index

 o corrupted()
Implements collections.CollectionEnumeration.corrupted.
 o hasMoreElements()
Implements java.util.Enumeration.hasMoreElements.
 o nextElement()
Implements java.util.Enumeration.nextElement().
 o numberOfRemainingElements()
Implements collections.CollectionEnumeration.numberOfRemainingElements

Constructors

 o ArrayEnumeration
 public ArrayEnumeration(Object arr[])
Build an enumeration that returns successive elements of the array

Methods

 o numberOfRemainingElements
 public int numberOfRemainingElements()
Implements collections.CollectionEnumeration.numberOfRemainingElements

See Also:
numberOfRemainingElements
 o hasMoreElements
 public boolean hasMoreElements()
Implements java.util.Enumeration.hasMoreElements.

See Also:
hasMoreElements
 o corrupted
 public boolean corrupted()
Implements collections.CollectionEnumeration.corrupted. Always false. Inconsistency cannot be reliably detected for arrays

Returns:
false
See Also:
corrupted
 o nextElement
 public Object nextElement()
Implements java.util.Enumeration.nextElement().

See Also:
nextElement

All Packages  Class Hierarchy  This Package  Previous  Next  Index