org.joda.primitives.iterator
Interface ByteIterator

All Superinterfaces:
Iterator<Byte>, PrimitiveIterator<Byte>
All Known Subinterfaces:
ByteListIterator
All Known Implementing Classes:
AbstractByteList.PListIterator, ArrayByteCollection.PIterator, ArrayByteIterator, ArrayByteListIterator

public interface ByteIterator
extends PrimitiveIterator<Byte>

Defines an iterator over primitive byte values.

This interface extends Iterator allowing seamless integration with other APIs.

Since:
1.0
Version:
CODE GENERATED
Author:
Stephen Colebourne, Jason Tiscione

Method Summary
 byte nextByte()
          Gets the next value from the iterator
 
Methods inherited from interface org.joda.primitives.iterator.PrimitiveIterator
isModifiable, isResettable, reset
 
Methods inherited from interface java.util.Iterator
hasNext, next, remove
 

Method Detail

nextByte

byte nextByte()
Gets the next value from the iterator

Returns:
the next available value
Throws:
NoSuchElementException - if there are no more values available


Copyright © 2005-2010 Joda.org. All Rights Reserved.