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