org.apache.commons.collections.primitives.decorators
Class ProxyShortIterator

java.lang.Object
  extended by org.apache.commons.collections.primitives.decorators.ProxyShortIterator
All Implemented Interfaces:
ShortIterator
Direct Known Subclasses:
ProxyShortListIterator, UnmodifiableShortIterator

abstract class ProxyShortIterator
extends java.lang.Object
implements ShortIterator

Since:
Commons Primitives 1.0
Version:
$Revision: 1.1 $ $Date: 2003/10/29 18:57:15 $
Author:
Rodney Waldhoff

Constructor Summary
ProxyShortIterator()
           
 
Method Summary
protected abstract  ShortIterator getIterator()
           
 boolean hasNext()
          Returns true iff I have more elements.
 short next()
          Returns the next element in me.
 
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.ShortIterator
remove
 

Constructor Detail

ProxyShortIterator

ProxyShortIterator()
Method Detail

hasNext

public boolean hasNext()
Description copied from interface: ShortIterator
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 ShortIterator
Returns:
true iff I have more elements

next

public short next()
Description copied from interface: ShortIterator
Returns the next element in me.

Specified by:
next in interface ShortIterator
Returns:
the next element in me

getIterator

protected abstract ShortIterator getIterator()


Copyright (c) 2002-2003 - Apache Software Foundation