package org.apache.commons.collections; import java.util.Iterator; public interface ResettableIterator extends Iterator { void reset(); }