org.apache.commons.collections.primitives.decorators
Class UnmodifiableByteIterator
java.lang.Object
org.apache.commons.collections.primitives.decorators.ProxyByteIterator
org.apache.commons.collections.primitives.decorators.UnmodifiableByteIterator
- All Implemented Interfaces:
- ByteIterator
- public final class UnmodifiableByteIterator
- extends ProxyByteIterator
- 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 |
proxied
private ByteIterator proxied
UnmodifiableByteIterator
UnmodifiableByteIterator(ByteIterator iterator)
remove
public void remove()
- Description copied from interface:
ByteIterator
- Removes from my underlying collection the last
element
returned
by me
(optional operation).
getIterator
protected ByteIterator getIterator()
- Specified by:
getIterator
in class ProxyByteIterator
wrap
public static final ByteIterator wrap(ByteIterator iterator)
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
Copyright (c) 2002-2003 - Apache Software Foundation