AROM-2_2_13

arom.kr.query.util
Interface ResetableIterator

All Superinterfaces:
Iterator
All Known Implementing Classes:
PathIterator

public interface ResetableIterator
extends Iterator

Interface of an Iterator that implements reset() operation. the reset() operation allows to reset the Iterator to its initial state therefore allowing for new rounds of iteration.

Author:
Alain Viari

Method Summary
 void reset()
          reset internal iterator data structures this method is used to reset the iteration before starting a new one.
 
Methods inherited from interface java.util.Iterator
hasNext, next, remove
 

Method Detail

reset

public void reset()
reset internal iterator data structures this method is used to reset the iteration before starting a new one.


AROM-2_2_13