Util.Structures
Interface IntIterator

All Known Implementing Classes:
StaticIntIterator

public interface IntIterator

Interface for an iterator objects that uses int primitaves instead of using the boxed Integer vesion.

Author:
Blip

Method Summary
 boolean hasNext()
          Check if there are more elements
 int next()
          Get next int
 

Method Detail

next

int next()
Get next int

Returns:
next int

hasNext

boolean hasNext()
Check if there are more elements

Returns:
if there are more elements