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