package com.github.ipk2015.coding2017.basic; public interface Iterator { public boolean hasNext(); public Object next(); }