public class EnumerationIterator extends Object implements Iterator
Enumeration instances appear
to be Iterator instances.| Constructor and Description |
|---|
EnumerationIterator()
Constructs a new
EnumerationIterator that will not
function until setEnumeration(Enumeration) is called. |
EnumerationIterator(Enumeration enumeration)
Constructs a new
EnumerationIterator that provides
an iterator view of the given enumeration. |
EnumerationIterator(Enumeration enumeration,
Collection collection)
Constructs a new
EnumerationIterator that will remove
elements from the specified collection. |
| Modifier and Type | Method and Description |
|---|---|
Enumeration |
getEnumeration()
Returns the underlying enumeration.
|
boolean |
hasNext()
Returns true if the underlying enumeration has more elements.
|
Object |
next()
Returns the next object from the enumeration.
|
void |
remove()
Removes the last retrieved element if a collection is attached.
|
void |
setEnumeration(Enumeration enumeration)
Sets the underlying enumeration.
|
public EnumerationIterator()
EnumerationIterator that will not
function until setEnumeration(Enumeration) is called.public EnumerationIterator(Enumeration enumeration)
EnumerationIterator that provides
an iterator view of the given enumeration.enumeration - the enumeration to usepublic EnumerationIterator(Enumeration enumeration, Collection collection)
EnumerationIterator that will remove
elements from the specified collection.enumeration - the enumeration to usecollection - the collection to remove elements formpublic boolean hasNext()
hasNext in interface IteratorNullPointerException - if the underlying enumeration is nullpublic Object next()
next in interface IteratorNullPointerException - if the enumeration is nullpublic void remove()
Functions if an associated Collection is known.
If so, the first occurrence of the last returned object from this
iterator will be removed from the collection.
remove in interface IteratorIllegalStateException - next() not called.UnsupportedOperationException - if no associated collectionpublic Enumeration getEnumeration()
public void setEnumeration(Enumeration enumeration)
enumeration - the new underlying enumerationCopyright © 2001–2015 The Apache Software Foundation. All rights reserved.