package util.list;
import java.util.NoSuchElementException;
public interface Iterator {
void start();
boolean cont();
void next();
Object getCurrent();
Object getNext() throws NoSuchElementException;
boolean hasNext();
void insertNext(Object obj);
void removeNext() throws NoSuchElementException;
}