org.apache.commons.collections.primitives.decorators
Class ProxyByteIterator
java.lang.Object
org.apache.commons.collections.primitives.decorators.ProxyByteIterator
- All Implemented Interfaces:
- ByteIterator
- Direct Known Subclasses:
- ProxyByteListIterator, UnmodifiableByteIterator
- abstract class ProxyByteIterator
- extends Object
- implements ByteIterator
- Since:
- Commons Primitives 1.0
- Version:
- $Revision: 1.1 $ $Date: 2003/10/29 18:33:10 $
- 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.ByteIterator |
remove |
ProxyByteIterator
ProxyByteIterator()
hasNext
public boolean hasNext()
- Description copied from interface:
ByteIterator
- 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 ByteIterator
- Returns:
true
iff I have more elements
next
public byte next()
- Description copied from interface:
ByteIterator
- Returns the next element in me.
- Specified by:
next
in interface ByteIterator
- Returns:
- the next element in me
getIterator
protected abstract ByteIterator getIterator()
Copyright (c) 2002-2003 - Apache Software Foundation