java.lang.Object
org.mule.util.IteratorAdapter
- All Implemented Interfaces:
- java.util.Iterator
- public class IteratorAdapter
- extends java.lang.Object
- implements java.util.Iterator
Utility method for converting Enumeration to an Iterator
class. If you attempt to remove() an Object from the iterator, it will
throw an UnsupportedOperationException. Added for use by TagLib so
Enumeration can be supported
- Version:
- $Revision: 1.4 $ $Date: 2003/10/20 21:44:38 $
|
Method Summary |
boolean |
hasNext()
Tests whether there are elements remaining in the collection. |
java.lang.Object |
next()
Obtain the next element in the collection. |
void |
remove()
Remove from the underlying collection the last element returned by next
(optional operation). |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
enum
private java.util.Enumeration enum
IteratorAdapter
public IteratorAdapter(java.util.Enumeration enum)
hasNext
public boolean hasNext()
- Description copied from interface:
java.util.Iterator
- Tests whether there are elements remaining in the collection. In other
words, calling
next() will not throw an exception.
- Specified by:
hasNext in interface java.util.Iterator
next
public java.lang.Object next()
- Description copied from interface:
java.util.Iterator
- Obtain the next element in the collection.
- Specified by:
next in interface java.util.Iterator
remove
public void remove()
- Description copied from interface:
java.util.Iterator
- Remove from the underlying collection the last element returned by next
(optional operation). This method can be called only once after each
call to
next(). It does not affect what will be returned
by subsequent calls to next.
- Specified by:
remove in interface java.util.Iterator