package main.week01.data_structure.api; public interface Iterator { public boolean hasNext(); public Object next(); }