package com.github.mrwengq.first; public interface Iterator { public abstract boolean hasNext(); public abstract Object next(); }