org.apache.commons.collections.primitives.decorators
Class ProxyIntIterator
java.lang.Object
org.apache.commons.collections.primitives.decorators.ProxyIntIterator
- All Implemented Interfaces:
- IntIterator
- Direct Known Subclasses:
- ProxyIntListIterator, UnmodifiableIntIterator
- abstract class ProxyIntIterator
- extends Object
- implements IntIterator
- Since:
- Commons Primitives 1.0
- Version:
- $Revision: 1.3 $ $Date: 2003/10/16 20:49:38 $
- Author:
- Rodney Waldhoff
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.apache.commons.collections.primitives.IntIterator |
remove |
ProxyIntIterator
ProxyIntIterator()
hasNext
public boolean hasNext()
- Description copied from interface:
IntIterator
- Returns
true iff I have more elements.
(In other words, returns true iff
a subsequent call to next will return
an element rather than throwing an exception.)
- Specified by:
hasNext in interface IntIterator
- Returns:
true iff I have more elements
next
public int next()
- Description copied from interface:
IntIterator
- Returns the next element in me.
- Specified by:
next in interface IntIterator
- Returns:
- the next element in me
getIterator
protected abstract IntIterator getIterator()
Copyright (c) 2002-2003 - Apache Software Foundation