antlr.collections.impl
Class VectorEnumeration
java.lang.Object
  |
  +--antlr.collections.impl.VectorEnumeration
- All Implemented Interfaces: 
- Enumeration
-  class VectorEnumeration- extends Object- implements Enumeration
| Field Summary | 
| (package private)  int | i
 | 
| (package private)  Vector | vector
 | 
 
 
| Method Summary | 
|  boolean | hasMoreElements()Enabled:  Tests if this enumeration contains more elements.
 | 
|  Object | nextElement()Enabled:  Returns the next element of this enumeration if this enumeration
 object has at least one more element to provide.
 | 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
 
vector
Vector vector
i
int i
VectorEnumeration
VectorEnumeration(Vector v)
hasMoreElements
public boolean hasMoreElements()
- Description copied from interface: Enumeration
- Enabled:  Tests if this enumeration contains more elements.
 
- 
- Specified by:
- hasMoreElementsin interface- Enumeration
 
- 
- Returns:
- trueif and only if this enumeration object
           contains at least one more element to provide;- falseotherwise.
 
nextElement
public Object nextElement()
- Description copied from interface: Enumeration
- Enabled:  Returns the next element of this enumeration if this enumeration
 object has at least one more element to provide.
 
- 
- Specified by:
- nextElementin interface- Enumeration
 
- 
- Returns:
- the next element of this enumeration.
 
comments? 