Interface BoundedIterator<T>
-
- Type Parameters:
T
- the item type.
- All Superinterfaces:
Iterator<T>
- All Known Implementing Classes:
ArrayIterator
,BooleanIterator
,CollectionIterator
,EmptyIterator
,IntRangeIterator
,IntSpecialValueIterator
,LongRangeIterator
,RandomValueIterator
,SingleValueIterator
public interface BoundedIterator<T> extends Iterator<T>
BoundedIterator
a generic bounded iterator interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
size()
Returns the size of the collection of the iterated items.
-