001package headfirst.iterator.dinermerger;
002
003public interface Iterator {
004        boolean hasNext();
005        Object next();
006}